Compare commits

..

4 commits

Author SHA1 Message Date
55170f6eae
docs: add readme 2024-07-27 22:41:08 +02:00
f83681eb13
add some bashrc stuff 2024-07-27 22:31:18 +02:00
b95de4c77e
packages 2024-07-24 18:47:17 +02:00
cb6ed3084a
packages 2024-07-24 15:40:24 +02:00
4 changed files with 714 additions and 687 deletions

28
.bashrc
View file

@ -6,12 +6,38 @@
# Aliases
alias ls="lsd"
alias cat="bat"
alias s="kitten ssh"
PS1='[\u@\h \W]\$ '
eval "$(starship init bash)"
source ~/.local/share/blesh/ble.sh
complete -cf doas # doas completions
# bun
export BUN_INSTALL="$HOME/.bun"
export PATH=$BUN_INSTALL/bin:$PATH:~/.local/bin:~/go/bin
export PATH=$BUN_INSTALL/bin:$PATH:~/.local/bin:~/go/bin:~/.wakatime
. "$HOME/.cargo/env"
# rbenv
export PATH="/home/hyro/.rbenv/shims:${PATH}"
export RBENV_SHELL=bash
command rbenv rehash 2>/dev/null
rbenv() {
local command
command="${1:-}"
if [ "$#" -gt 0 ]; then
shift
fi
case "$command" in
rehash|shell)
eval "$(rbenv "sh-$command" "$@")";;
*)
command rbenv "$command" "$@";;
esac
}
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion

View file

@ -1,9 +0,0 @@
[user]
name = Jozef Steinhübl
email = xhyrom.hyro@gmail.com
[credential "https://github.com"]
helper =
helper = !/usr/bin/gh auth git-credential
[credential "https://gist.github.com"]
helper =
helper = !/usr/bin/gh auth git-credential

1
README.md Normal file
View file

@ -0,0 +1 @@
This repository contains my configs, themes and other stuff that I'm using on void linux.

File diff suppressed because it is too large Load diff