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:
Akianonymus 2021-07-14 10:27:33 +05:30
parent 4a934e9a82
commit 42bf581337
1 changed files with 6 additions and 0 deletions

View File

@ -14,6 +14,12 @@ opt.updatetime = 250 -- update interval for gitsigns
opt.timeoutlen = 400
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
opt.number = true
opt.numberwidth = 2