blob: 45cca3665a017005a1522ace6321c2b2c97497cd (
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
#
# getchoo's config.fish
#
function set_envvars
# add user bin directory to path
if test -d "$HOME/.local/bin"
fish_add_path "$HOME/.local/bin"
end
# xdg dirs
set -gx XDG_DATA_HOME "$HOME/.local/share"
set -gx XDG_CONFIG_HOME "$HOME/.config"
set -gx XDG_STATE_HOME "$HOME/.local/state"
set -gx XDG_CACHE_HOME "$HOME/.cache"
if not set -q XDG_DATA_DIRS
set -gx XDG_DATA_DIRS "/usr/local/share/:/usr/share/"
end
set -gx XDG_CONFIG_DIRS "/etc/xdg"
# default programs
set -gx EDITOR 'nvim'
set -gx VISUAL 'nvim'
set -gx GPG_TTY (tty)
# paths
set -gx CARGO_HOME "$XDG_DATA_HOME/cargo"
if test -d "$CARGO_HOME"
fish_add_path "$CARGO_HOME/bin"
end
set -gx RUSTUP_HOME "$XDG_DATA_HOME/rustup"
set -gx LESSHISTFILE "$XDG_STATE_HOME/less/history"
set -gx NPM_CONFIG_USERCONFIG "$XDG_CONFIG_HOME/npm/npmrc"
end
function load_plugins
#starship init fish | source
if not test -f "$XDG_CONFIG_HOME/fish/functions/fisher.fish"
echo 'bootstrapping fisher'
curl -sL https://git.io/fisher | source && fisher install jorgebucaran/fisher
end
end
if status is-login
set_envvars
else if status is-interactive
load_plugins
end
|