From 42bf581337edabea18677085ecd96651aaf57daf Mon Sep 17 00:00:00 2001 From: Akianonymus Date: Wed, 14 Jul 2021 10:27:33 +0530 Subject: [PATCH] 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 --- lua/options.lua | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lua/options.lua b/lua/options.lua index 611acd6..c83e6ae 100644 --- a/lua/options.lua +++ b/lua/options.lua @@ -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