Commit cd08157 1 parent b3e91eb commit cd08157 Copy full SHA for cd08157
File tree 3 files changed +7
-5
lines changed
3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change
1
+ -- Custom handlers for LSP actions
2
+ -- using telescope.nvim
3
+ -- TODO: Some of theses don't work reliably
4
+ -- so they are not used, yet.
1
5
local pickers = require " telescope.pickers"
2
6
local conf = require (" telescope.config" ).values
3
7
local finders = require " telescope.finders"
Original file line number Diff line number Diff line change @@ -12,7 +12,8 @@ return {
12
12
event = ' InsertEnter' ,
13
13
dependencies = {
14
14
' hrsh7th/cmp-nvim-lsp' ,
15
- ' hrsh7th/cmp-nvim-lsp-signature-help' ,
15
+ -- TODO: wait for PR merge to revert back to hrsh7th upstream
16
+ ' jmbuhr/cmp-nvim-lsp-signature-help' ,
16
17
' hrsh7th/cmp-buffer' ,
17
18
' hrsh7th/cmp-path' ,
18
19
' hrsh7th/cmp-calc' ,
@@ -25,7 +26,6 @@ return {
25
26
' L3MON4D3/LuaSnip' ,
26
27
' rafamadriz/friendly-snippets' ,
27
28
' onsails/lspkind-nvim' ,
28
- ' jmbuhr/otter.nvim' ,
29
29
},
30
30
config = function ()
31
31
local cmp = require ' cmp'
@@ -104,7 +104,6 @@ return {
104
104
format = lspkind .cmp_format {
105
105
mode = ' symbol' ,
106
106
menu = {
107
- otter = ' [🦦]' ,
108
107
nvim_lsp = ' [LSP]' ,
109
108
nvim_lsp_signature_help = ' [sig]' ,
110
109
luasnip = ' [snip]' ,
@@ -121,7 +120,6 @@ return {
121
120
},
122
121
},
123
122
sources = {
124
- -- { name = 'otter' }, -- for code chunks in quarto
125
123
{ name = ' path' },
126
124
{ name = ' nvim_lsp_signature_help' },
127
125
{ name = ' nvim_lsp' },
Original file line number Diff line number Diff line change 5
5
6
6
-- for lsp features in code cells / embedded code
7
7
' jmbuhr/otter.nvim' ,
8
- dev = false ,
8
+ dev = true ,
9
9
dependencies = {
10
10
{
11
11
' neovim/nvim-lspconfig' ,
You can’t perform that action at this time.
0 commit comments