Disable lsp_signature
Ref: https://github.com/ray-x/lsp_signature.nvim/issues/94
This commit is contained in:
parent
d2610e77bd
commit
25db47d4a6
8
nvimrc
8
nvimrc
|
@ -584,7 +584,7 @@ EOF
|
||||||
" LSP
|
" LSP
|
||||||
|
|
||||||
packadd! nvim-lspconfig " https://github.com/neovim/nvim-lspconfig.git
|
packadd! nvim-lspconfig " https://github.com/neovim/nvim-lspconfig.git
|
||||||
packadd! lsp_signature.nvim " https://github.com/ray-x/lsp_signature.nvim.git
|
" packadd! lsp_signature.nvim " https://github.com/ray-x/lsp_signature.nvim.git
|
||||||
packadd! fzf-lsp.nvim " https://github.com/gfanto/fzf-lsp.nvim.git
|
packadd! fzf-lsp.nvim " https://github.com/gfanto/fzf-lsp.nvim.git
|
||||||
|
|
||||||
lua <<EOF
|
lua <<EOF
|
||||||
|
@ -620,9 +620,9 @@ local on_attach = function(client, bufnr)
|
||||||
vim.api.nvim_buf_set_keymap(bufnr, 'n', '<leader>fci', '<Cmd>IncomingCalls<CR>', opts)
|
vim.api.nvim_buf_set_keymap(bufnr, 'n', '<leader>fci', '<Cmd>IncomingCalls<CR>', opts)
|
||||||
vim.api.nvim_buf_set_keymap(bufnr, 'n', '<leader>fco', '<Cmd>OutgoingCalls<CR>', opts)
|
vim.api.nvim_buf_set_keymap(bufnr, 'n', '<leader>fco', '<Cmd>OutgoingCalls<CR>', opts)
|
||||||
|
|
||||||
require 'lsp_signature'.on_attach({
|
-- require 'lsp_signature'.on_attach({
|
||||||
hint_enable = false,
|
-- hint_enable = false,
|
||||||
})
|
-- })
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Go
|
-- Go
|
||||||
|
|
Loading…
Reference in New Issue