added theme store and themery
This commit is contained in:
@@ -1,5 +1,3 @@
|
|||||||
return {
|
return {
|
||||||
{
|
'tpope/vim-commentary',
|
||||||
'tpope/vim-commentary',
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
|
|||||||
11
lua/custom/plugins/resize.lua
Normal file
11
lua/custom/plugins/resize.lua
Normal 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 } },
|
||||||
|
},
|
||||||
|
}
|
||||||
6
lua/custom/plugins/store.lua
Normal file
6
lua/custom/plugins/store.lua
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
return {
|
||||||
|
'alex-popov-tech/store.nvim',
|
||||||
|
dependencies = { 'OXY2DEV/markview.nvim' },
|
||||||
|
opts = {},
|
||||||
|
cmd = 'Store',
|
||||||
|
}
|
||||||
12
lua/custom/plugins/themery.nvim.lua
Normal file
12
lua/custom/plugins/themery.nvim.lua
Normal 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
|
||||||
|
}
|
||||||
@@ -1,5 +1,3 @@
|
|||||||
return {
|
return {
|
||||||
{
|
'kshenoy/vim-signature',
|
||||||
'tpope/vim-commentary',
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user