Update fillchars option to use Lua table syntax

This commit is contained in:
2026-02-02 20:54:29 +00:00
parent ff14f16bbd
commit ba5fd1c33b

View File

@@ -91,7 +91,7 @@ vim.opt.foldlevel = 20
vim.opt.foldmethod = 'expr'
vim.opt.foldexpr = 'nvim_treesitter#foldexpr()'
vim.opt.foldtext = ''
vim.opt.fillchars = 'fold: '
vim.opt.fillchars = { fold = ' ' }
-- Enable all mouse features
vim.opt.mouse = 'a'