dotfiles/fish.configlink/config.fish

47 lines
997 B
Fish
Raw Normal View History

2020-07-26 20:15:21 +00:00
#!/usr/local/bin/fish
if status --is-interactive
# Set $PATH for finding programs
set FISH_DIR (readlink ~/.config/fish)
set DOTS (dirname $FISH_DIR)
set PROJ (dirname $DOTS)
set PATH $PATH /usr/local/bin ~/.local/bin $DOTS/bin ~/.cargo/bin
2020-07-31 04:02:41 +00:00
set CDPATH . $HOME $PROJ
2020-07-26 20:15:21 +00:00
2020-07-27 01:06:49 +00:00
# Use `vi` in the shell with cursor shapes
2020-07-26 20:15:21 +00:00
fish_vi_key_bindings
2020-07-26 21:31:31 +00:00
set -g fish_vi_force_cursor
set -g fish_cursor_default block
set -g fish_cursor_insert line
set -g fish_cursor_visual block
set -g fish_cursor_replace_one underscore
2020-07-26 20:15:21 +00:00
fish_vi_cursor
# Turn off greeting
set fish_greeting ""
# Autojump
2020-08-02 00:06:16 +00:00
zoxide init fish | source
2020-07-26 20:15:21 +00:00
# Colors
theme_gruvbox
# Individual features
2020-07-31 01:12:17 +00:00
aliases
2020-07-26 20:15:21 +00:00
pyenv
2020-07-27 17:00:26 +00:00
notes
aws
2020-07-31 01:12:17 +00:00
mactools
2020-08-02 00:06:16 +00:00
projects
2020-07-31 01:12:17 +00:00
# Fuzzy finder
fzf_key_bindings
2020-07-31 13:28:30 +00:00
set -g FZF_DEFAULT_COMMAND 'rg --files'
set -g FZF_DEFAULT_OPTS '-m --height 50% --border'
2020-07-26 20:15:21 +00:00
# Use `starship` prompt
starship init fish | source
end
2020-07-25 19:32:16 +00:00