diff --git a/nvim/lua/user/options.lua b/nvim/lua/user/options.lua index 3921dd6..fbbd471 100644 --- a/nvim/lua/user/options.lua +++ b/nvim/lua/user/options.lua @@ -77,6 +77,8 @@ vim.o.foldcolumn = "auto" vim.o.list = false vim.o.listchars = 'tab: »,space:·,eol:,nbsp:␣' +vim.o.fillchars = string.format([[eob: ,fold: ,foldopen:%s,foldsep:%s,foldclose:%s]], icons.fold.open, icons.fold.sep, icons.fold.close) + -- Spell stuff, because i cant English vim.o.spell = true vim.o.spelllang = 'en_us'