Add line numbers back, add vtsls and neotest go

This commit is contained in:
Pablu
2025-11-24 09:27:15 +01:00
parent b00d96f033
commit fa32c992ca
4 changed files with 9 additions and 3 deletions

View File

@@ -2,6 +2,6 @@ return {
"neovim/nvim-lspconfig",
config = function()
vim.lsp.enable({ "lua_ls", "jedi_language_server", "gopls", "html", "yamlls", "svelte-language-server", "clangd",
"ansiblels" })
"ansiblels", "vtsls" })
end
}

View File

@@ -3,6 +3,7 @@ return {
dependencies = {
"nvim-neotest/nvim-nio",
"nvim-neotest/neotest-python",
"nvim-neotest/neotest-go",
"nvim-lua/plenary.nvim",
"antoinemadec/FixCursorHold.nvim",
"nvim-treesitter/nvim-treesitter"
@@ -10,9 +11,9 @@ return {
config = function()
require("neotest").setup({
adapters = {
require("neotest-python")
require("neotest-python"),
require("neotest-go")
}
})
end
}