3 files changed,
13 insertions(+),
24 deletions(-)
Author:
Oleksandr Smirnov
olexsmir@gmail.com
Committed at:
2025-09-28 15:07:21 +0300
Parent:
e096e76
M
lua/plugins/core.lua
@@ -32,4 +32,16 @@ config = function()
require("todo-comments").setup {} end, }, + { + "olexsmir/gopher.nvim", + ---@module "gopher" + ---@type gopher.Config + ---@diagnostic disable-next-line: missing-fields + opts = { + log_level = vim.log.levels.TRACE, + gotests = { + template = "testify", + }, + }, + }, }
D
@@ -1,18 +0,0 @@
----@type LazySpec -return { - "olexsmir/gopher.nvim", - ft = "go", - cmd = { "GoInstallDepsSync", "GoInstallDeps" }, - build = function() - pcall(vim.cmd.GoInstallDeps) - end, - ---@module "gopher" - ---@type gopher.Config - ---@diagnostic disable-next-line: missing-fields - opts = { - log_level = vim.log.levels.TRACE, - gotests = { - template = "testify", - }, - }, -}
M
lua/plugins/treesitter.lua
@@ -13,12 +13,7 @@ ---@type TSConfig
---@diagnostic disable-next-line: missing-fields opts = { auto_install = true, - ensure_installed = { - "sql", - "markdown", - "markdown_inline", - "query", - }, + ensure_installed = { "sql", "markdown", "markdown_inline", "query" }, ignore_install = { "org" }, indent = { enable = true, disable = { "python" } }, highlight = { enable = true, additional_vim_regex_highlighting = false },