nvim: move to lazy package manager

This commit is contained in:
Robert Kmieć
2023-02-14 14:42:29 +01:00
parent cf374dbbb5
commit f327679ca9
104 changed files with 1617 additions and 1501 deletions

View File

@@ -0,0 +1,23 @@
return {
'nat-418/boole.nvim',
config = function()
require'boole'.setup({
mappings = {
increment = '<C-a>',
decrement = '<C-x>'
},
-- User defined loops
additions = {
{'Foo', 'Bar'},
{'tic', 'tac', 'toe'},
{'light', 'dark'},
{'phaseOne', 'phaseTwo', 'phaseThree'},
{'PhaseOne', 'PhaseTwo', 'PhaseThree'},
{'Enable', 'Disable'},
{'ENABLE', 'DISABLE'},
{'enable', 'disable'},
{'zero', 'one', 'two', 'three', 'four', 'five', 'six', 'seven', 'eight', 'nine'},
},
})
end
}