feat(nvim): add modelines

This commit is contained in:
Price Hiller 2022-06-10 11:50:50 -05:00
parent b36d959072
commit f23b60873b

View File

@ -99,6 +99,9 @@ M.setup = function()
-- Remove end of boundry '~' -- Remove end of boundry '~'
opt.fillchars:append('eob: ') opt.fillchars:append('eob: ')
-- Allow vim to get settings from file
opt.modelines = 5
end end
return M return M