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
navigator
Akianonymus 3 years ago
parent 4a934e9a82
commit 42bf581337

@ -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

Loading…
Cancel
Save