✨ feat(nvim): modicator added
This commit is contained in:
parent
9af5006d76
commit
9166c1c6cb
1 changed files with 11 additions and 0 deletions
11
.config/nvim/lua/plugins/extras/ui/modicator.lua
Normal file
11
.config/nvim/lua/plugins/extras/ui/modicator.lua
Normal 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 = {},
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue