Update fisher & tide, add VS Code, i3, & sway configs

This commit is contained in:
askiiart 2023-11-20 01:07:05 -06:00
parent 9a43cae5fa
commit 80f43e8f7e
Signed by untrusted user who does not match committer: askiiart
GPG key ID: BC3800E55FB54D67
62 changed files with 453 additions and 616 deletions

View file

@ -1,30 +1,21 @@
function finish
_tide_title Finish
echo
set_color red
_tide_option y 'Overwrite your current tide config'
_tide_title 'Overwrite tide config?'
set_color normal
_tide_option y Yes
echo
_tide_option p 'Exit and print the config you just generated'
echo
_tide_menu (status function)
_tide_menu
switch $_tide_selected_option
case 'Overwrite your current tide config'
case y
_tide_finish
command -q clear && clear
set -q _flag_auto || _tide_print_configure_current_options
case 'Exit and print the config you just generated'
_tide_exit_configure
command -q clear && clear
_tide_print_configure_current_options
end
end
function _tide_finish
_tide_exit_configure
set -e _tide_selected_option # Skip through all the _next_choices
# Deal with prompt char/vi mode
contains character $fake_tide_left_prompt_items || set -p fake_tide_left_prompt_items vi_mode
@ -38,9 +29,5 @@ function _tide_finish
set -e $_tide_prompt_var 2>/dev/null
# Re-initialize the prompt
tide reload
end
function _tide_print_configure_current_options
_tide_fish_colorize "tide configure --auto $_tide_configure_current_options"
source (functions --details fish_prompt)
end