Disable nvim intro and tilde chars on end of buffer
This avoids the situation when the initial screen looks out of place because there is some pre rendered text https://github.com/neovim/neovim/pull/8546
This commit is contained in:
parent
4a934e9a82
commit
42bf581337
|
@ -14,6 +14,12 @@ opt.updatetime = 250 -- update interval for gitsigns
|
||||||
opt.timeoutlen = 400
|
opt.timeoutlen = 400
|
||||||
opt.clipboard = "unnamedplus"
|
opt.clipboard = "unnamedplus"
|
||||||
|
|
||||||
|
-- disable nvim intro
|
||||||
|
opt.shortmess:append("sI")
|
||||||
|
|
||||||
|
-- disable tilde on end of buffer: https://github.com/ neovim/neovim/pull/8546#issuecomment-643643758
|
||||||
|
vim.cmd [[let &fcs='eob: ']]
|
||||||
|
|
||||||
-- Numbers
|
-- Numbers
|
||||||
opt.number = true
|
opt.number = true
|
||||||
opt.numberwidth = 2
|
opt.numberwidth = 2
|
||||||
|
|
Loading…
Reference in New Issue