From ea992308f1221e07f3ae0fe417bed37d351a0634 Mon Sep 17 00:00:00 2001 From: siduck76 Date: Sat, 7 Aug 2021 11:48:13 +0530 Subject: [PATCH] disable tilde on end of buffer --- lua/options.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/options.lua b/lua/options.lua index e3e9697..50d63ba 100644 --- a/lua/options.lua +++ b/lua/options.lua @@ -20,7 +20,7 @@ opt.clipboard = "unnamedplus" opt.shortmess:append("sI") -- disable tilde on end of buffer: https://github.com/ neovim/neovim/pull/8546#issuecomment-643643758 -vim.cmd("let &fcs='eob: '") +opt.fillchars = {eob = " "} -- Numbers opt.number = true