all repos — dotfiles @ 4e7c63e8f8a18a3a48448ba85199895edd01fa06

my *nix dotfiles

darwin/fish/config.fish (view raw)

 1set fish_greeting
 2
 3set -gx PATH ~/bin ~/.local/bin ~/leet/Nim/bin ~/.nimble/bin \
 4/usr/local/bin /usr/bin /bin /sbin /usr/sbin /usr/X11R6/bin \
 5~/go/bin /usr/local/go/bin
 6
 7set -gx EDITOR nvim
 8set -gx BROWSER iridium
 9set -gx PW_KEY x@icyphox.sh
10
11# source ~/.config/fish/functions/marks.fish
12
13function fish_user_key_bindings
14    bind \cr '__fzy_history (commandline -b)'
15end
16
17# workaround for slow completions on macOS
18function __fish_describe_command; end
19
20# The next line updates PATH for the Google Cloud SDK.
21if [ -f '/Users/icy/Downloads/google-cloud-sdk/path.fish.inc' ]; . '/Users/icy/Downloads/google-cloud-sdk/path.fish.inc'; end
22set -g fish_user_paths "/usr/local/opt/node@14/bin" $fish_user_paths
23
24
25# pyenv init
26if command -v pyenv 1>/dev/null 2>&1
27  pyenv init - | source
28end
29