Files
dotfiles/nvim/lua/plugins/extras/ui/modicator.lua
2025-08-13 21:46:48 +02:00

12 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 = {},
}