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

@ -1,6 +1,5 @@
{
autoGroups."highlightOnYank" = { };
autoGroups."runLinter" = { };
autoGroups."lspConfig" = { };
autoGroups."restoreCursorPosition" = { };
autoCmd = [
@ -21,16 +20,6 @@
'';
};
}
{
group = "runLinter";
event = "BufWritePost";
pattern = "*";
callback = {
__raw = ''
require("lint").try_lint()
'';
};
}
{
group = "restoreCursorPosition";
event = "BufReadPost";