fish: remove private/local configs, never used it

This commit is contained in:
Charles Gould 2020-05-04 22:51:59 -05:00
parent 688a541736
commit 0a1b60b779

View File

@ -72,20 +72,12 @@ if not functions -q fisher
fish -c fisher
end
# Fish local configs
set -g _fish_local_path ~/.local/fish
test -d $_fish_local_path/functions ; and set fish_function_path $fish_function_path[1] $_fish_local_path/functions $fish_function_path[2..-1]
test -d $_fish_local_path/completions ; and set fish_complete_path $fish_complete_path[1] $_fish_local_path/completions $fish_complete_path[2..-1]
for file in $_fish_local_path/conf.d/*.fish
builtin source $file 2> /dev/null
end
# Homebrew package manager
if test -x /home/linuxbrew/.linuxbrew/bin/brew
eval (/home/linuxbrew/.linuxbrew/bin/brew shellenv)
end
# Cheatsheet widget (Ctrl+G)
if command -sq navi
if command -q navi
navi widget fish | source
end