blob: 19d6ce5d740e207e6c6b29f8b974277d6c5e7ad8 (
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
51
52
53
54
55
|
################## NOTICE ##################
# Since we are calling `st /usr/bin/fish` instead of setting fish as the
# user shell, these variables are now set in ~/.profile (for dash) and
# are inherited by fish.
############################################
#set -gx EDITOR "/usr/bin/kak"
#
#set -gx EDITOR "kak"
#
#set -gx XDG_CONFIG_HOME "$HOME/.config"
#set -gx XDG_DATA_HOME "$HOME/.local/share"
#set -gx XDG_CACHE_HOME "$HOME/.cache"
#
#set -gx MPD_HOST "$XDG_RUNTIME_DIR/mpd.sock"
#set -gx XINITRC "$XDG_CONFIG_HOME/x11/xinitrc"
#
#set -gx CARGO_HOME "$XDG_DATA_HOME/rust/cargo"
#set -gx RUSTUP_HOME "$XDG_DATA_HOME/rust/rustup"
#
#set -gx GOPATH "$XDG_DATA_HOME/go"
#set -gx GOMODCACHE "$XDG_CACHE_HOME/go/mod"
#set -pgx PATH '/usr/local/go/bin'
#set -pgx PATH "$GOPATH/bin"
#
#set -gx PYTHONSTARTUP "$XDG_CONFIG_HOME/python/pythonrc"
#set -gx SQLITE_HISTORY "$XDG_DATA_HOME/sqlite_history"
#
#set -gx PASSWORD_STORE_DIR "$XDG_DATA_HOME/password-store"
#set -gx GNUPGHOME "$XDG_DATA_HOME/gnupg"
#
#set -gx FZF_DEFAULT_OPTS "--reverse --height=50%"
#set -gx _ZO_FZF_OPTS "--scheme=path --tiebreak=index --height=75% --reverse --border=rounded --no-scrollbar --preview=\"ls --color -al {2}\" --preview-window=right"
##set -gx BAT_THEME "base16"
#set -gx MANPAGER "less -R --use-color -Dd+r -Du+b"
#
## Ollama
#set -gx OLLAMA_NOHISTORY 1
#
## Plan9
##set -gx PLAN9 "/usr/local/plan9"
##set -gxax PATH "$PLAN9/bin"
#
## Misc.
## set -gx XINITRC "$XDG_CONFIG_HOME/x11/xinitrc"
## set -gx XAUTHORITY "$XDG_RUNTIME_DIR/Xauthority"
#set -gx GTK2_RC_FILES "$XDG_CONFIG_HOME/gtk-2.0/gtkrc-2.0"
#set -gx WGETRC "$XDG_CONFIG_HOME/wget/wgetrc"
#set -gx INPUTRC "$XDG_CONFIG_HOME/shell/inputrc"
#set -gx ANSIBLE_CONFIG "$XDG_CONFIG_HOME/ansible/ansible.cfg"
#set -gx MBSYNCRC "$XDG_CONFIG_HOME/mbsync/config"
#set -gx ELECTRUMDIR "$XDG_DATA_HOME/electrum"
#set -gx PYTHONSTARTUP "$XDG_CONFIG_HOME/python/pythonrc"
#set -gx SQLITE_HISTORY "$XDG_DATA_HOME/sqlite_history"
#
|