From 0a1b60b779956e2fd24510882e85478681f46459 Mon Sep 17 00:00:00 2001 From: Charles Gould Date: Mon, 4 May 2020 22:51:59 -0500 Subject: [PATCH] fish: remove private/local configs, never used it --- fish/config.fish | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/fish/config.fish b/fish/config.fish index cd96e3b..e7b9604 100644 --- a/fish/config.fish +++ b/fish/config.fish @@ -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