From 01babafd7286e42199bf69d6f6a70c6958c73940 Mon Sep 17 00:00:00 2001 From: siduck Date: Wed, 8 Dec 2021 12:30:16 +0530 Subject: [PATCH] add option for fillchars --- lua/core/default_config.lua | 1 + lua/core/options.lua | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/lua/core/default_config.lua b/lua/core/default_config.lua index 9c167c1..001c5a8 100644 --- a/lua/core/default_config.lua +++ b/lua/core/default_config.lua @@ -25,6 +25,7 @@ M.options = { timeoutlen = 400, updatetime = 250, undofile = true, + fillchars = { eob = " " }, -- NvChad options nvChad = { diff --git a/lua/core/options.lua b/lua/core/options.lua index 5be456d..01b3a39 100644 --- a/lua/core/options.lua +++ b/lua/core/options.lua @@ -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