added fish and config

This commit is contained in:
2022-06-25 15:24:30 +02:00
parent 64b0dcb149
commit 018057b62d
73 changed files with 2241 additions and 0 deletions
@@ -0,0 +1,19 @@
function _tide_remove_unusable_items
# Remove tool-specific items for tools the machine doesn't have installed
set -l removed_items
for item in aws chruby docker git go java kubectl node php rustc terraform toolbox virtual_env
set -l cli_names $item
switch $item
case virtual_env
set cli_names python python3
end
type --query $cli_names || set -a removed_items $item
end
set -U _tide_left_items (for item in $tide_left_prompt_items
contains $item $removed_items || echo $item
end)
set -U _tide_right_items (for item in $tide_right_prompt_items
contains $item $removed_items || echo $item
end)
end