You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
430 B
24 lines
430 B
local M = { |
|
"mawkler/modicator.nvim", |
|
event = "BufEnter", |
|
} |
|
|
|
function M.config() |
|
require("modicator").setup { |
|
show_warnings = false, |
|
highlights = { |
|
defaults = { |
|
bold = true, |
|
italic = false, |
|
}, |
|
}, |
|
} |
|
|
|
vim.api.nvim_create_autocmd({ "Colorscheme" }, { |
|
callback = function() |
|
vim.api.nvim_set_hl(0, "CursorLineNr", { fg = "#388bfd", bg = "NONE" }) |
|
end, |
|
}) |
|
end |
|
|
|
return M
|
|
|