nvim: switch to cmp's signature plugin

This commit is contained in:
mequidis
2022-09-10 14:24:31 +03:00
parent 5578c545a9
commit 4e620e02d7
4 changed files with 5 additions and 17 deletions

View File

@ -22,6 +22,7 @@ cmp.setup({
},
sources = {
{ name = "nvim_lsp" },
{ name = "nvim_lsp_signature_help" },
{ name = "path" },
{ name = "buffer", keyword_length = 5 },
{ name = "vsnip" },

View File

@ -1,8 +0,0 @@
cfg = {
hint_prefix = " ",
handler_opts = {
border = "none",
},
}
require("lsp_signature").setup(cfg)

View File

@ -1,5 +1,7 @@
-- ignore certain errors
vim.g.vimtex_quickfix_ignore_filters = { "Underfull", "Overfull", "babel" }
-- vim.g.vimtex_quickfix_ignore_filters = { "Underfull", "Overfull", "babel" }
-- use zathura as the pdf viewer
vim.g.vimtex_view_general_viewer = "zathura"
vim.g.vimtex_compiler_latexmk_engines = { _ = "-lualatex" }