config/fish/config.fish (view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
set fish_greeting
set -gx PATH ~/bin ~/.local/bin ~/leet/Nim/bin ~/.nimble/bin \
/usr/local/bin /usr/bin /bin /sbin /usr/sbin /usr/X11R6/bin \
~/go/bin
set -gx EDITOR nvim
set -gx BROWSER firefox
set -gx PW_KEY x@icyphox.sh
set -U Z_CMD "n"
# source ~/.config/fish/functions/marks.fish
function fish_user_key_bindings
bind \cr '__fzy_history (commandline -b)'
end
# The next line updates PATH for the Google Cloud SDK.
if [ -f '/Users/icy/Downloads/google-cloud-sdk/path.fish.inc' ]; . '/Users/icy/Downloads/google-cloud-sdk/path.fish.inc'; end
|