chore: setup higher timeout and log level

This commit is contained in:
Oleksandr Smirnov 2025-02-27 23:38:48 +02:00
parent 35464fdfc9
commit ed34cd1dd9
No known key found for this signature in database

View file

@ -37,6 +37,13 @@ vim.notify = vim.print
-- install go treesitter parse
require("nvim-treesitter.install").ensure_installed_sync "go"
require("gopher").setup {
-- ensures that all go deps are installed
timeout = 5000,
-- simply log everything
log_level = vim.log.levels.TRACE,
}
-- setup mini.test only when running headless nvim
if #vim.api.nvim_list_uis() == 0 then
require("mini.test").setup {