added theme store and themery

This commit is contained in:
venus
2025-11-08 22:36:12 -06:00
parent 682e7012ac
commit 40567a1f4c
5 changed files with 31 additions and 6 deletions

View File

@@ -1,5 +1,3 @@
return {
{
'tpope/vim-commentary',
},
'tpope/vim-commentary',
}

View File

@@ -0,0 +1,11 @@
return {
'0xm4n/resize.nvim',
keys = {
-- Format: { 'key', 'command', desc = 'description', [opts]
{ '<M-Left>', "<cmd>lua require('resize').ResizeLeft()<CR>", { silent = true } },
{ '<M-Right>', "<cmd>lua require('resize').ResizeRight()<CR>", { silent = true } },
{ '<M-Up>', "<cmd>lua require('resize').ResizeUp()<CR>", { silent = true } },
{ '<M-Down>', "<cmd>lua require('resize').ResizeDown()<CR>", { silent = true } },
},
}

View File

@@ -0,0 +1,6 @@
return {
'alex-popov-tech/store.nvim',
dependencies = { 'OXY2DEV/markview.nvim' },
opts = {},
cmd = 'Store',
}

View File

@@ -0,0 +1,12 @@
-- Plugin: zaldih/themery.nvim
-- Installed via store.nvim
return {
"zaldih/themery.nvim",
lazy = false,
config = function()
require("themery").setup(
{}
)
end
}

View File

@@ -1,5 +1,3 @@
return {
{
'tpope/vim-commentary',
},
'kshenoy/vim-signature',
}