dotfiles/.config/nvim/lua/plugins/cinnamon.lua
Sergio Laín 553978feef
feat(Neovim): Plugins Changes
New Plugins and also changed some existing ones
2023-09-24 01:37:30 +02:00

14 lines
342 B
Lua

return {
{
"declancm/cinnamon.nvim",
event = "VeryLazy",
config = function()
require("cinnamon").setup({
default_keymaps = true,
extra_keymaps = true,
extended_keymaps = true,
override_keymaps = true,
})
end,
},
}