diff options
Diffstat (limited to 'nvim/lua/options.lua')
| -rw-r--r-- | nvim/lua/options.lua | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/nvim/lua/options.lua b/nvim/lua/options.lua new file mode 100644 index 0000000..c5af716 --- /dev/null +++ b/nvim/lua/options.lua @@ -0,0 +1,9 @@ +require "nvchad.options" + +-- add yours here! +vim.opt.wrap = false +vim.opt.spell = true +vim.opt.spelllang = { "en" } + +-- local o = vim.o +-- o.cursorlineopt ='both' -- to enable cursorline! |
