feat(nvim): Setup nvim-lint through nixvim config

This commit is contained in:
Jalil David Salamé Messina 2024-03-02 21:12:45 +01:00
parent b2b9477041
commit 439eec75c3
Signed by: jalil
GPG key ID: F016B9E770737A0B
3 changed files with 8 additions and 18 deletions

View file

@ -14,4 +14,12 @@
treesitter.incrementalSelection.enable = true;
treesitter-context.enable = true;
trouble.enable = true;
lint = {
enable = true;
lintersByFt = {
rust = [ "typos" ];
latex = [ "chktex" "typos" ];
markdown = [ "typos" ];
};
};
}