nvim/lua/plugins/editor.lua
2023-11-26 03:42:10 +01:00

19 lines
506 B
Lua

return {
{
"folke/which-key.nvim",
event = "VeryLazy",
opts = { },
keys = {
{ '<leader>wk', '<cmd>WhichKey<CR>', desc = 'Show key mappings' },
},
},
{ 'wsdjeg/vim-fetch', event = "VeryLazy" },
{ 'nvim-tree/nvim-web-devicons' },
{
'eandrju/cellular-automaton.nvim',
event = "VeryLazy",
keys = {
{ '<leader>mr', '<cmd>CellularAutomaton make_it_rain<CR>', desc = 'Make it rain' },
},
},
}