diff options
Diffstat (limited to 'lua/plugins')
-rw-r--r-- | lua/plugins/cmp.lua | 2 | ||||
-rw-r--r-- | lua/plugins/lspsaga.lua | 10 |
2 files changed, 10 insertions, 2 deletions
diff --git a/lua/plugins/cmp.lua b/lua/plugins/cmp.lua index f4766db..78605fa 100644 --- a/lua/plugins/cmp.lua +++ b/lua/plugins/cmp.lua | |||
@@ -12,7 +12,6 @@ return { | |||
12 | 'hrsh7th/vim-vsnip', | 12 | 'hrsh7th/vim-vsnip', |
13 | 'octaltree/cmp-look', | 13 | 'octaltree/cmp-look', |
14 | 'folke/trouble.nvim', | 14 | 'folke/trouble.nvim', |
15 | 'folke/lazydev.nvim', | ||
16 | { | 15 | { |
17 | 'L3MON4D3/LuaSnip', | 16 | 'L3MON4D3/LuaSnip', |
18 | config = function() | 17 | config = function() |
@@ -34,7 +33,6 @@ return { | |||
34 | 33 | ||
35 | config = function() | 34 | config = function() |
36 | require('trouble').setup() | 35 | require('trouble').setup() |
37 | require('lazydev').setup() | ||
38 | 36 | ||
39 | local cmp = require'cmp' | 37 | local cmp = require'cmp' |
40 | cmp.setup({ | 38 | cmp.setup({ |
diff --git a/lua/plugins/lspsaga.lua b/lua/plugins/lspsaga.lua new file mode 100644 index 0000000..ff7867b --- /dev/null +++ b/lua/plugins/lspsaga.lua | |||
@@ -0,0 +1,10 @@ | |||
1 | return { | ||
2 | 'nvimdev/lspsaga.nvim', | ||
3 | config = function() | ||
4 | require('lspsaga').setup({}) | ||
5 | end, | ||
6 | dependencies = { | ||
7 | 'nvim-treesitter/nvim-treesitter', -- optional | ||
8 | 'nvim-tree/nvim-web-devicons', -- optional | ||
9 | } | ||
10 | } | ||