chore: setup higher timeout and log level
This commit is contained in:
parent
35464fdfc9
commit
ed34cd1dd9
1 changed files with 7 additions and 0 deletions
|
|
@ -37,6 +37,13 @@ vim.notify = vim.print
|
||||||
-- install go treesitter parse
|
-- install go treesitter parse
|
||||||
require("nvim-treesitter.install").ensure_installed_sync "go"
|
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
|
-- setup mini.test only when running headless nvim
|
||||||
if #vim.api.nvim_list_uis() == 0 then
|
if #vim.api.nvim_list_uis() == 0 then
|
||||||
require("mini.test").setup {
|
require("mini.test").setup {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue