diff options
author | Squibid <me@zacharyscheiman.com> | 2023-06-26 11:31:04 -0400 |
---|---|---|
committer | Squibid <me@zacharyscheiman.com> | 2023-06-26 11:31:04 -0400 |
commit | d968ff639be3b6ecddb6ae224f3804f4eea566ba (patch) | |
tree | dc5f8c7120c43faaae75212cf0cf90bdc5a56d51 /lua/core | |
parent | b19167a1ab1e6d3c21d67788d404c159aeaaf306 (diff) | |
download | nvim-d968ff639be3b6ecddb6ae224f3804f4eea566ba.tar.gz nvim-d968ff639be3b6ecddb6ae224f3804f4eea566ba.tar.bz2 nvim-d968ff639be3b6ecddb6ae224f3804f4eea566ba.zip |
remove unused function from lsp.lua and add more lsp plugins!
Diffstat (limited to 'lua/core')
-rw-r--r-- | lua/core/plugins.lua | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/lua/core/plugins.lua b/lua/core/plugins.lua index 5ad5474..c048116 100644 --- a/lua/core/plugins.lua +++ b/lua/core/plugins.lua @@ -79,7 +79,6 @@ require 'dep' { 'onsails/lspkind.nvim', }, }, - { 'ray-x/lsp_signature.nvim' }, -- snippets ----------------------------------------------------------------- { 'L3MON4D3/LuaSnip', @@ -88,10 +87,15 @@ require 'dep' { { 'doxnit/cmp-luasnip-choice' }, -- lsp ---------------------------------------------------------------------- - { 'neovim/nvim-lspconfig' }, + { 'neovim/nvim-lspconfig' }, -- setup lsp { 'j-hui/fidget.nvim' }, -- shows lsp progress + { 'ray-x/lsp_signature.nvim' }, -- see information about the current function { 'dnlhc/glance.nvim' }, -- diagnostic info at a glance + { 'kosayoda/nvim-lightbulb' }, -- "light bulb" - Gru + { 'weilbith/nvim-code-action-menu' }, -- code actions + { 'folke/trouble.nvim' }, + { 'folke/todo-comments.nvim' }, -- optional language specific lsp's -- { 'mfussenegger/nvim-jdtls' }, -- java lsp server |