neovim: tweak config

This commit is contained in:
Paul-Henri Froidmont 2024-08-08 01:47:41 +02:00
parent b9bd906e65
commit d864982647
Signed by: phfroidmont
GPG key ID: BE948AFD7E7873BE
3 changed files with 23 additions and 2 deletions

View file

@ -1,9 +1,14 @@
return { return {
{ "ellisonleao/gruvbox.nvim" },
{ {
"LazyVim/LazyVim", "LazyVim/LazyVim",
opts = { opts = {
colorscheme = "gruvbox", colorscheme = "gruvbox",
} },
},
{
'nvim-telescope/telescope.nvim',
opts = {
defaults = { path_display = { "truncate" } },
},
}, },
} }

View file

@ -4,4 +4,6 @@ return {
{ "williamboman/mason.nvim", enabled = false }, { "williamboman/mason.nvim", enabled = false },
{ "williamboman/mason-lspconfig.nvim", enabled = false }, { "williamboman/mason-lspconfig.nvim", enabled = false },
{ "jay-babu/mason-nvim-dap.nvim", enabled = false }, { "jay-babu/mason-nvim-dap.nvim", enabled = false },
{ "folke/noice.nvim", enabled = false },
{ "Bilal2453/luvit-meta", enabled = false },
} }

View file

@ -0,0 +1,14 @@
return {
{
"neovim/nvim-lspconfig",
opts = {
servers = {
metals = {
settings = {
showImplicitArguments = false,
},
},
},
},
},
}