diff --git a/lua/custom/plugins/commentary.lua b/lua/custom/plugins/commentary.lua index 5c92a71..81aeddb 100644 --- a/lua/custom/plugins/commentary.lua +++ b/lua/custom/plugins/commentary.lua @@ -1,5 +1,3 @@ return { - { - 'tpope/vim-commentary', - }, + 'tpope/vim-commentary', } diff --git a/lua/custom/plugins/resize.lua b/lua/custom/plugins/resize.lua new file mode 100644 index 0000000..25753c6 --- /dev/null +++ b/lua/custom/plugins/resize.lua @@ -0,0 +1,11 @@ +return { + '0xm4n/resize.nvim', + + keys = { + -- Format: { 'key', 'command', desc = 'description', [opts] + { '', "lua require('resize').ResizeLeft()", { silent = true } }, + { '', "lua require('resize').ResizeRight()", { silent = true } }, + { '', "lua require('resize').ResizeUp()", { silent = true } }, + { '', "lua require('resize').ResizeDown()", { silent = true } }, + }, +} diff --git a/lua/custom/plugins/store.lua b/lua/custom/plugins/store.lua new file mode 100644 index 0000000..cd92f5e --- /dev/null +++ b/lua/custom/plugins/store.lua @@ -0,0 +1,6 @@ +return { + 'alex-popov-tech/store.nvim', + dependencies = { 'OXY2DEV/markview.nvim' }, + opts = {}, + cmd = 'Store', +} diff --git a/lua/custom/plugins/themery.nvim.lua b/lua/custom/plugins/themery.nvim.lua new file mode 100644 index 0000000..90cd30a --- /dev/null +++ b/lua/custom/plugins/themery.nvim.lua @@ -0,0 +1,12 @@ +-- Plugin: zaldih/themery.nvim +-- Installed via store.nvim + +return { + "zaldih/themery.nvim", + lazy = false, + config = function() + require("themery").setup( + {} + ) + end +} \ No newline at end of file diff --git a/lua/custom/plugins/vim-signature.lua b/lua/custom/plugins/vim-signature.lua index 5c92a71..f210c43 100644 --- a/lua/custom/plugins/vim-signature.lua +++ b/lua/custom/plugins/vim-signature.lua @@ -1,5 +1,3 @@ return { - { - 'tpope/vim-commentary', - }, + 'kshenoy/vim-signature', }