Reducing column offset for prompt in Neovim on macOS
This commit is contained in:
parent
7566f19cd4
commit
4c273795c4
1 changed files with 6 additions and 1 deletions
|
@ -26,8 +26,13 @@ if contains newline $_tide_left_items # two line prompt initialization
|
|||
set -l column_offset 5
|
||||
|
||||
if test "$NVIM"
|
||||
switch (uname)
|
||||
case Darwin
|
||||
set column_offset 3
|
||||
case '*'
|
||||
set column_offset 4
|
||||
end
|
||||
end
|
||||
|
||||
test "$tide_left_prompt_frame_enabled" = true &&
|
||||
set -l top_left_frame "$prompt_and_frame_color╭─" &&
|
||||
|
|
Loading…
Reference in a new issue