bash/.bashrc (view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
# Export own script path export PATH=$HOME/.dotfiles/bin/:/usr/local/bin/:$PATH # Aliases alias ls='ls --color=auto' alias la='ls -lav --ignore=..' alias vim="nvim" alias lg="lazygit" alias pgl="pass git pull" alias pgs="pass git push" alias spt="spotify_player -d" alias swconf="nvim ~/.config/sway/config" alias sandisk="sudo mount /dev/sda1 /mnt/sandisk && cd /mnt/sandisk/" alias fd='cd "$(find ~/documents/ ~/downloads/ ~/.config/ ~/uni/ -type d | fzf -i)"' alias :q="exit" alias ..="cd .." alias v="vim" alias reload-gpg="gpg-connect-agent reloadagent /bye" # Arrow bindings bind '"\e[A":history-search-backward' bind '"\e[B":history-search-forward' # Start programs eval "$(starship init bash)" eval "$(zoxide init --cmd='cd' bash)" # Navtag #source /home/chris/.scripts/navtag/commands.sh |