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,7 +26,12 @@ if contains newline $_tide_left_items # two line prompt initialization
|
||||||
set -l column_offset 5
|
set -l column_offset 5
|
||||||
|
|
||||||
if test "$NVIM"
|
if test "$NVIM"
|
||||||
set column_offset 4
|
switch (uname)
|
||||||
|
case Darwin
|
||||||
|
set column_offset 3
|
||||||
|
case '*'
|
||||||
|
set column_offset 4
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
test "$tide_left_prompt_frame_enabled" = true &&
|
test "$tide_left_prompt_frame_enabled" = true &&
|
||||||
|
|
Loading…
Reference in a new issue