diff --git a/.config/fish/functions/fish_prompt.fish b/.config/fish/functions/fish_prompt.fish index 3b58b7b..1ead796 100644 --- a/.config/fish/functions/fish_prompt.fish +++ b/.config/fish/functions/fish_prompt.fish @@ -23,8 +23,12 @@ if contains newline $_tide_left_items # two line prompt initialization test "$tide_prompt_add_newline_before" = true && set -l add_newline '\n' set_color $tide_prompt_color_frame_and_connection -b normal | read -l prompt_and_frame_color - set -l column_offset 5 + + if test "$NVIM" + set column_offset 4 + end + test "$tide_left_prompt_frame_enabled" = true && set -l top_left_frame "$prompt_and_frame_color╭─" && set -l bot_left_frame "$prompt_and_frame_color╰─" &&