nvimrc: disable lsp_signature
This commit is contained in:
parent
eab8d4629e
commit
60b44032c9
8
nvimrc
8
nvimrc
|
@ -665,7 +665,7 @@ EOF
|
|||
" LSP
|
||||
|
||||
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! lsp-colors.nvim " https://github.com/folke/lsp-colors.nvim.git
|
||||
|
||||
|
@ -703,9 +703,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>fco', '<Cmd>OutgoingCalls<CR>', opts)
|
||||
|
||||
require 'lsp_signature'.on_attach({
|
||||
hint_enable = false,
|
||||
})
|
||||
-- require 'lsp_signature'.on_attach({
|
||||
-- hint_enable = false,
|
||||
-- })
|
||||
end
|
||||
|
||||
-- Go
|
||||
|
|
Loading…
Reference in New Issue