Override or set new options, autocmds, etc. in lua files placed in lua/custom/

pull/333/head
gmnz 2 years ago
parent 5e4d24cb2f
commit 877eedba21

@ -511,5 +511,9 @@ cmp.setup {
},
}
-- Override or set new options, autocmds, etc. in lua files placed in lua/custom/
-- See lua/custom/example_override.lua
vim.cmd('runtime! lua/custom/*.lua')
-- The line beneath this is called `modeline`. See `:help modeline`
-- vim: ts=2 sts=2 sw=2 et

@ -0,0 +1,2 @@
-- Override hlsearch option value from init.lua
-- vim.o.hlsearch = true
Loading…
Cancel
Save