configure lsp

This commit is contained in:
2023-09-15 13:27:54 +03:00
parent 78d13aca61
commit 4fa17d87c8
18 changed files with 476 additions and 84 deletions

20
lua/plugins/neotest.lua Normal file
View File

@@ -0,0 +1,20 @@
return {
"nvim-neotest/neotest",
optional = true,
dependencies = {
"nvim-neotest/neotest-go",
},
opts = {
adapters = {
["neotest-python"] = {
-- Here you can specify the settings for the adapter, i.e.
-- runner = "pytest",
-- python = ".venv/bin/python",
},
["neotest-go"] = {
-- Here we can set options for neotest-go, e.g.
-- args = { "-tags=integration" }
},
},
},
}