feat(nvim): modicator added

This commit is contained in:
Sergio Laín 2023-10-26 00:45:32 +02:00
parent 9af5006d76
commit 9166c1c6cb
No known key found for this signature in database
GPG key ID: 14C9B8080681777B

View file

@ -0,0 +1,11 @@
return {
"mawkler/modicator.nvim",
event = "BufReadPost",
init = function()
-- These are required for Modicator to work
vim.o.cursorline = true
vim.o.number = true
vim.o.termguicolors = true
end,
opts = {},
}