disable tilde on end of buffer

This commit is contained in:
siduck76 2021-08-07 11:48:13 +05:30
parent d390966b4d
commit ea992308f1
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ opt.clipboard = "unnamedplus"
opt.shortmess:append("sI") opt.shortmess:append("sI")
-- disable tilde on end of buffer: https://github.com/ neovim/neovim/pull/8546#issuecomment-643643758 -- disable tilde on end of buffer: https://github.com/ neovim/neovim/pull/8546#issuecomment-643643758
vim.cmd("let &fcs='eob: '") opt.fillchars = {eob = " "}
-- Numbers -- Numbers
opt.number = true opt.number = true