aboutsummaryrefslogtreecommitdiff
path: root/lua/plugins
diff options
context:
space:
mode:
authorsrdusr <trevorgray@srdusr.com>2023-02-23 20:42:39 +0200
committersrdusr <trevorgray@srdusr.com>2023-02-23 20:42:39 +0200
commit1afff5c4e157d5c2a87c39f90faeb0a9410f4b56 (patch)
tree51e57a89d1778090bc42adb621afe4cede421cb5 /lua/plugins
parenta20adc219f47bab22441bf6dec8f2bbceb28eb26 (diff)
downloaddotfiles-1afff5c4e157d5c2a87c39f90faeb0a9410f4b56.tar.gz
dotfiles-1afff5c4e157d5c2a87c39f90faeb0a9410f4b56.zip
Experimental feat@ trying to nullify progress message updates on text change
Diffstat (limited to 'lua/plugins')
-rw-r--r--lua/plugins/null-ls.lua13
1 files changed, 12 insertions, 1 deletions
diff --git a/lua/plugins/null-ls.lua b/lua/plugins/null-ls.lua
index f50827a..b96d883 100644
--- a/lua/plugins/null-ls.lua
+++ b/lua/plugins/null-ls.lua
@@ -6,8 +6,19 @@ require("null-ls").setup({
--debug = true,
disabled_filetypes = { "PKGBUILD" },
timeout_ms = 5000,
- async = true,
+ --async = true,
debounce = 150,
+ log = {
+ enable = true,
+ level = 'warn',
+ use_console = 'async',
+ },
+ update_in_insert = false,
+ --fallback_severity = vim.diagnostic.severity.ERROR,
+ --log_level = "warn",
+ --on_attach = nil,
+ --on_init = nil,
+ --on_exit = nil,
sources = {
--require("null-ls").builtins.formatting.shfmt, -- shell script formatting
require("null-ls").builtins.diagnostics.dotenv_linter,