don’t output warnings when LSPs aren’t found
This commit is contained in:
parent
d774924992
commit
13d3061904
1 changed files with 2 additions and 2 deletions
|
@ -157,7 +157,7 @@ if utils.executable("pylsp") then
|
|||
capabilities = capabilities,
|
||||
}
|
||||
else
|
||||
vim.notify("pylsp not found!", vim.log.levels.WARN, { title = "Nvim-config" })
|
||||
--vim.notify("pylsp not found!", vim.log.levels.WARN, { title = "Nvim-config" })
|
||||
end
|
||||
|
||||
-- if utils.executable('pyright') then
|
||||
|
@ -204,7 +204,7 @@ if utils.executable("vim-language-server") then
|
|||
capabilities = capabilities,
|
||||
}
|
||||
else
|
||||
vim.notify("vim-language-server not found!", vim.log.levels.WARN, { title = "Nvim-config" })
|
||||
-- vim.notify("vim-language-server not found!", vim.log.levels.WARN, { title = "Nvim-config" })
|
||||
end
|
||||
|
||||
-- set up bash-language-server
|
||||
|
|
Loading…
Reference in a new issue