mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-22 21:30:51 +00:00
feat: silence annoying null-ls codeactions messages
This commit is contained in:
parent
2ad526cbf5
commit
099b87a5cf
2 changed files with 2 additions and 1 deletions
|
@ -127,7 +127,7 @@ inputs: let
|
||||||
vim.git = {
|
vim.git = {
|
||||||
enable = true;
|
enable = true;
|
||||||
gitsigns.enable = true;
|
gitsigns.enable = true;
|
||||||
gitsigns.codeActions = true;
|
gitsigns.codeActions = false; # throws an annoying debug message
|
||||||
};
|
};
|
||||||
|
|
||||||
vim.minimap = {
|
vim.minimap = {
|
||||||
|
|
|
@ -21,6 +21,7 @@ in {
|
||||||
'';
|
'';
|
||||||
vim.luaConfigRC.null_ls = nvim.dag.entryAfter ["null_ls-setup" "lsp-setup"] ''
|
vim.luaConfigRC.null_ls = nvim.dag.entryAfter ["null_ls-setup" "lsp-setup"] ''
|
||||||
require('null-ls').setup({
|
require('null-ls').setup({
|
||||||
|
debug = false,
|
||||||
diagnostics_format = "[#{m}] #{s} (#{c})",
|
diagnostics_format = "[#{m}] #{s} (#{c})",
|
||||||
debounce = 250,
|
debounce = 250,
|
||||||
default_timeout = 5000,
|
default_timeout = 5000,
|
||||||
|
|
Loading…
Reference in a new issue