mirror of
https://github.com/akr2002/nv.git
synced 2024-11-09 10:39:44 +00:00
fix typo
This commit is contained in:
parent
a58b803ad2
commit
2b78342829
2 changed files with 17 additions and 0 deletions
|
@ -20,6 +20,7 @@
|
||||||
./languages/treesitter/ts-autotag.nix
|
./languages/treesitter/ts-autotag.nix
|
||||||
./languages/treesitter/treesitter-context-commentstring.nix
|
./languages/treesitter/treesitter-context-commentstring.nix
|
||||||
./languages/nvim-jdtls.nix
|
./languages/nvim-jdtls.nix
|
||||||
|
./languages/nvim-lint.nix
|
||||||
|
|
||||||
./dap/dap.nix
|
./dap/dap.nix
|
||||||
|
|
||||||
|
|
16
config/languages/nvim-lint.nix
Normal file
16
config/languages/nvim-lint.nix
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
{
|
||||||
|
plugins.lint = {
|
||||||
|
enable = true;
|
||||||
|
lintersByFt = {
|
||||||
|
nix = ["statix"];
|
||||||
|
lua = ["selene"];
|
||||||
|
python = ["flake8"];
|
||||||
|
javascript = ["eslint_d"];
|
||||||
|
javascriptreact = ["eslint_d"];
|
||||||
|
typescript = ["eslint_d"];
|
||||||
|
typescriptreact = ["eslint_d"];
|
||||||
|
json = ["jsonlint"];
|
||||||
|
java = ["checkstyle"];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue