Nvim: add new plugins

This commit is contained in:
Robert Kmieć
2023-04-04 00:53:51 +02:00
parent bff439a6c6
commit 8dd3f1942b
4 changed files with 35 additions and 2 deletions

View File

@@ -76,7 +76,21 @@ return {{
"fenetikm/falcon",
lazy = false,
config = function()
vim.cmd([[ colorscheme falcon]])
--vim.cmd([[ colorscheme falcon]])
end
},
{
"casr/vim-colors-reference",
lazy = false,
config = function()
--vim.cmd([[ colorscheme reference]])
end
},
{
"blazkowolf/gruber-darker.nvim",
lazy = false,
config = function()
vim.cmd([[ colorscheme gruber-darker]])
end
},
{
@@ -86,6 +100,13 @@ return {{
--vim.cmd([[ colorscheme kanagawa]])
end
},
{
"tommcdo/vim-lion",
keys = {
{ "gl", desc = "align to specific character to the left" },
{ "gL", desc = "align to specific character to the right" }
}
},
-- }}}
-- Testing phase {{{
@@ -101,7 +122,14 @@ return {{
--"rgroli/other.nvim", " Currently doesn't support C/C++
--"smolovk/projector.nvim",
"Pocco81/true-zen.nvim",
{'krivahtoo/silicon.nvim', build = './install.sh' },
{'krivahtoo/silicon.nvim', build = './install.sh',
config = function()
require('silicon').setup({
font = 'DaddyTimeMono Nerd Font=16',
theme = 'Monokai Extended',
})
end
},
"nullchilly/fsread.nvim",
"ziontee113/icon-picker.nvim",
"cbochs/grapple.nvim",