Nvim: add new plugins
This commit is contained in:
@@ -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",
|
||||
|
||||
@@ -77,6 +77,7 @@ return {
|
||||
--)
|
||||
--
|
||||
local capabilities = require('cmp_nvim_lsp').default_capabilities()
|
||||
capabilities.offsetEncoding = { "utf-16" }
|
||||
|
||||
nvim_lsp.groovyls.setup({
|
||||
cmd = { "java", "-jar", "/home/kmcr/tools/groovy-language-server/build/libs/groovy-language-server-all.jar" },
|
||||
|
||||
@@ -2,10 +2,12 @@ return {
|
||||
'nvim-telescope/telescope.nvim',
|
||||
dependencies = {
|
||||
'debugloop/telescope-undo.nvim',
|
||||
'desdic/agrolens.nvim'
|
||||
},
|
||||
--cmd = ":Telescope",
|
||||
config = function()
|
||||
-- require('telescope').load_extension('ultisnips')
|
||||
require('telescope').load_extension('undo')
|
||||
require('telescope').load_extension('agrolens')
|
||||
end
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user