diff --git a/config/nvim/lua/autogroups.lua b/config/nvim/lua/autogroups.lua index a1e8867..add83eb 100644 --- a/config/nvim/lua/autogroups.lua +++ b/config/nvim/lua/autogroups.lua @@ -104,8 +104,4 @@ autocmd({ 'BufRead', 'BufNewFile' }, { command = 'set filetype=sshconfig', }) -autocmd('QuickFixCmdPost', { - callback = function() vim.cmd [[Trouble qflist open]] end, -}) - -- vim: ts=2 sts=2 sw=2 et diff --git a/config/nvim/lua/plugins/lsp.lua b/config/nvim/lua/plugins/lsp.lua index 7058f90..881f8e9 100644 --- a/config/nvim/lua/plugins/lsp.lua +++ b/config/nvim/lua/plugins/lsp.lua @@ -42,12 +42,6 @@ local lsp_servers = { diagnostics = { globals = { 'vim', - -- busted - 'describe', - 'it', - 'before_each', - 'after_each', - 'assert', }, disable = { -- Ignore lua_ls noisy `missing-fields` warnings @@ -55,7 +49,7 @@ local lsp_servers = { }, }, hint = { - enable = false, + enable = true, arrayIndex = 'Auto', await = true, paramName = 'All', diff --git a/config/nvim/lua/plugins/other.lua b/config/nvim/lua/plugins/other.lua index ec3d7da..03d2e0e 100644 --- a/config/nvim/lua/plugins/other.lua +++ b/config/nvim/lua/plugins/other.lua @@ -10,6 +10,28 @@ return { '~/Downloads', '~/Library', }, + bypass_save_filetypes = { + 'PlenaryTestPopup', + 'alpha', + 'checkhealth', + 'dashboard', + 'dbout', + 'gitsigns.blame', + 'grug-far', + 'help', + 'lspinfo', + 'man', + 'neo-tree', + 'neotest-output', + 'neotest-output-panel', + 'neotest-summary', + 'notify', + 'qf', + 'spectre_panel', + 'startuptime', + 'trouble', + 'tsplayground', + }, -- log_level = 'debug', }, },