blob: 1e54d8cbb332c6ddb698121ce1ea1dc4cee7900d (
plain)
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
|
# https://reckoning.dev/fish-shell/
set -g theme_powerline_fonts yes
set -g theme_nerd_fonts yes
set -g theme_display_git_stashed_verbose yes
set -g theme_display_git_master_branch yes
set -g theme_display_git_untracked yes
set -g theme_display_git_dirty yes
set -g theme_display_nvm yes
set -g theme_display_virtualenv yes
set -g theme_color_scheme zenburn
fundle plugin 'edc/bass'
fundle plugin 'oh-my-fish/plugin-php'
fundle plugin 'danhper/fish-fastdir'
fundle plugin 'danhper/fish-theme-afowler'
fundle plugin 'oh-my-fish/theme-bobthefish'
fundle init
# set path. See https://github.com/fish-shell/fish-shell/issues/527
set PATH ~/.cargo/bin $PATH
set PATH ~/.local/bin $PATH
# Bootstrap fisher. See https://github.com/jorgebucaran/fisher
if not functions -q fisher
set -q XDG_CONFIG_HOME; or set XDG_CONFIG_HOME ~/.config
curl https://git.io/fisher --create-dirs -sLo $XDG_CONFIG_HOME/fish/functions/fisher.fish
fish -c fisher
end
|