Skip to content

Commit 602d116

Browse files
committed
fix: don't set fish_user_paths
1 parent b5fe783 commit 602d116

1 file changed

Lines changed: 4 additions & 14 deletions

File tree

config/fish/config.fish

Lines changed: 4 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -6,24 +6,20 @@ set -gx fish_cursor_visual block
66
set -gx fish_cursor_replace_one underscore
77
#set -gx TERM tmux-256color
88

9-
109
# aliases
1110
alias .. 'cd ..'
1211
alias ... 'cd ../..'
1312
alias .3 'cd ../../..'
1413
alias .4 'cd ../../../..'
1514
alias .5 'cd ../../../../..'
1615

17-
1816
# command -qv nvim && alias vim nvim
1917

2018
set -gx EDITOR (which nvim)
2119
set -gx VISUAL $EDITOR
2220
set -gx SUDO_EDITOR $EDITOR
2321

2422
# Path
25-
set -x fish_user_paths
26-
fish_add_path /bin
2723
fish_add_path ~/.local/bin
2824
fish_add_path ~/.cargo/bin
2925
fish_add_path /usr/local/sbin
@@ -39,6 +35,7 @@ set -x LESS -rF
3935
set -x COMPOSE_DOCKER_CLI_BUILD 1
4036
set -x MANPAGER "nvim +Man!"
4137
set -x MANROFFOPT -c
38+
set -x XDG_SCREENSHOTS_DIR ~/Pictures/Screenshots/
4239

4340
# Fish
4441
set fish_emoji_width 2
@@ -77,7 +74,7 @@ alias bt "coredumpctl -1 gdb -A '-ex \"bt\" -q -batch' 2>/dev/null | awk '/Progr
7774

7875
alias lazygit "TERM=xterm-256color command lazygit"
7976
alias g git
80-
abbr git hub
77+
# abbr git hub
8178
abbr gg lazygit
8279
abbr gl 'hub l --color | devmoji --log --color | less -rXF'
8380
abbr gs "hub st"
@@ -120,22 +117,15 @@ abbr jg "journalctl -b --grep"
120117
abbr ju "journalctl --unit"
121118

122119

123-
# bun
124-
set --export BUN_INSTALL "$HOME/.bun"
125-
set --export PATH $BUN_INSTALL/bin $PATH
126-
127-
# Added by LM Studio CLI (lms)
128-
set -gx PATH $PATH /home/monarch/.lmstudio/bin
129-
130120
# >>> conda initialize >>>
131121
# !! Contents within this block are managed by 'conda init' !!
132122
if test -f /home/monarch/miniforge3/bin/conda
133-
eval /home/monarch/miniforge3/bin/conda "shell.fish" "hook" $argv | source
123+
eval /home/monarch/miniforge3/bin/conda "shell.fish" hook $argv | source
134124
else
135125
if test -f "/home/monarch/miniforge3/etc/fish/conf.d/conda.fish"
136126
. "/home/monarch/miniforge3/etc/fish/conf.d/conda.fish"
137127
else
138-
set -x PATH "/home/monarch/miniforge3/bin" $PATH
128+
set -x PATH /home/monarch/miniforge3/bin $PATH
139129
end
140130
end
141131
# <<< conda initialize <<<

0 commit comments

Comments
 (0)