diff options
| author | Max Christian Pohle | 2024-09-02 18:42:30 +0200 |
|---|---|---|
| committer | Max Christian Pohle | 2024-09-02 18:42:30 +0200 |
| commit | 8a0ce1be51377e3f61e22888be54bb36e7fda923 (patch) | |
| tree | 699e5178f01949287e9cc84615d339abbb0c1145 /lua | |
| parent | fe0e677564995c25119beb8238234c24ef6e592c (diff) | |
| download | vim-8a0ce1be51377e3f61e22888be54bb36e7fda923.tar.bz2 vim-8a0ce1be51377e3f61e22888be54bb36e7fda923.zip | |
removed lazydev because it requires the newest nvim version
Diffstat (limited to 'lua')
| -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 | } | ||
