nvimrc: disable lsp_signature

This commit is contained in:
Rob Watson 2022-02-17 07:23:11 +01:00
parent eab8d4629e
commit 60b44032c9
1 changed files with 4 additions and 4 deletions

8
nvimrc
View File

@ -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