dotfiles/.config/nvim/lua/plugins/extras/ui/modicator.lua
2023-12-06 23:38:47 +01:00

11 lines
232 B
Lua

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