diff options
author | listout <listout@protonmail.com> | 2022-12-31 20:38:07 +0530 |
---|---|---|
committer | listout <listout@protonmail.com> | 2022-12-31 20:38:07 +0530 |
commit | 1bcdf53cba6ba78c6de39971b0c9d8feeeb98df4 (patch) | |
tree | 654be22a6d78eb1c5bfdb477e58197d3336f6504 | |
parent | 1ab778b0e0ee27736449d9c0f459ae2ecbfc7fd0 (diff) |
nvim: appearance: removing space from end of file
Signed-off-by: listout <listout@protonmail.com>
-rw-r--r-- | lua/core/appearance.lua | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lua/core/appearance.lua b/lua/core/appearance.lua index 452c4b9..f6c9d3b 100644 --- a/lua/core/appearance.lua +++ b/lua/core/appearance.lua @@ -28,7 +28,7 @@ opt.pumheight = 15 opt.helpheight = 12 opt.previewheight = 12 opt.showcmd = false -opt.listchars = 'tab:▸ ,extends:›,precedes:‹,nbsp:·,trail:·' +opt.listchars = 'tab:░ ,extends:›,precedes:‹,nbsp:·,trail:·' opt.background = 'dark' opt.cmdheight = 2 opt.fillchars = { @@ -49,4 +49,3 @@ vim.cmd [[ highlight Indentifier cterm=none gui=italic highlight Comment cterm=italic gui=italic ]] - |