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

@@ -14,6 +14,9 @@ vim.opt.rtp:prepend(lazypath)
require("vim-options")
require("lazy").setup("plugins")
vim.o.number = true
vim.o.relativenumber = true
-- Panes
vim.cmd.set("splitright")

View File

@@ -1,5 +1,6 @@
{
"FixCursorHold.nvim": { "branch": "master", "commit": "1900f89dc17c603eec29960f57c00bd9ae696495" },
"autoclose.nvim": { "branch": "main", "commit": "3f86702b54a861a17d7994b2e32a7c648cb12fb1" },
"blink.cmp": { "branch": "main", "commit": "327fff91fe6af358e990be7be1ec8b78037d2138" },
"catppuccin": { "branch": "main", "commit": "234fc048de931a0e42ebcad675bf6559d75e23df" },
"conform.nvim": { "branch": "master", "commit": "cde4da5c1083d3527776fee69536107d98dae6c9" },
@@ -11,6 +12,7 @@
"mason.nvim": { "branch": "main", "commit": "ad7146aa61dcaeb54fa900144d768f040090bff0" },
"mini.icons": { "branch": "main", "commit": "ff2e4f1d29f659cc2bad0f9256f2f6195c6b2428" },
"neotest": { "branch": "master", "commit": "deadfb1af5ce458742671ad3a013acb9a6b41178" },
"neotest-go": { "branch": "main", "commit": "59b50505053f9c45a9febb79e11a56206c3e3901" },
"neotest-python": { "branch": "master", "commit": "b0d3a861bd85689d8ed73f0590c47963a7eb1bf9" },
"nvim-lint": { "branch": "master", "commit": "baf7c91c2b868b12446df511d4cdddc98e9bf66e" },
"nvim-lspconfig": { "branch": "master", "commit": "c8503e63c6afab3ed34b49865a4a4edbb1ebf4a8" },

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
}