add option for fillchars

This commit is contained in:
siduck 2021-12-08 12:30:16 +05:30
parent 2a8afcb7b6
commit 01babafd72
2 changed files with 2 additions and 1 deletions

View file

@ -25,6 +25,7 @@ M.options = {
timeoutlen = 400,
updatetime = 250,
undofile = true,
fillchars = { eob = " " },
-- NvChad options
nvChad = {

View file

@ -14,7 +14,7 @@ opt.shiftwidth = options.shiftwidth
opt.smartindent = options.smartindent
-- disable tilde on end of buffer: https://github.com/neovim/neovim/pull/8546#issuecomment-643643758
opt.fillchars = { eob = " " }
opt.fillchars = options.fillchars
opt.hidden = options.hidden
opt.ignorecase = options.ignorecase