Skip to content

Instantly share code, notes, and snippets.

@abiriadev
Created February 23, 2022 03:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save abiriadev/8ff6ffe4e56005ed18cccd5920090b7b to your computer and use it in GitHub Desktop.
Save abiriadev/8ff6ffe4e56005ed18cccd5920090b7b to your computer and use it in GitHub Desktop.
my cute ~/.config/fish/config.fish file
set -gx HOME /home/abiria
# PATH config
set -gx PATH $PATH /bin /sbin /usr/bin /usr/games /usr/local/bin ~/.local/bin ~/.local/appimage /snap/bin ~/.cargo/bin /usr/local/go/bin ~/prg/kotlinc/bin ~/.deno/bin ~/go/bin
set -g -x fish_greeting ''
set -gx EDITOR neovide
set -gx VISUAL neovide
set -gx MANPAGER "sh -c 'col -bx | bat -l man -p'"
set -gx RUSTDOCFLAGS "--cfg docsrs"
# sources
starship init fish | source
mcfly init fish | source
zoxide init fish | source
# Generated for envman. Do not edit.
test -s "$HOME/.config/envman/load.fish"; and source "$HOME/.config/envman/load.fish"
# alias
alias e='exa -F --icons'
alias el='e -l'
alias g=git
alias cg=cargo
alias b=bat
alias v=nvim
alias rmr='rm -r'
alias rmrf='rm -rf'
alias chx='chmod +x'
set -x N_PREFIX "$HOME/n"; contains "$N_PREFIX/bin" $PATH; or set -a PATH "$N_PREFIX/bin" # Added by n-install (see http://git.io/n-install-repo).
set -x N_PREFIX "$HOME/n"; contains "$N_PREFIX/bin" $PATH; or set -a PATH "$N_PREFIX/bin" # Added by n-install (see http://git.io/n-install-repo).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment