inital commit,

initalized from nix flake init -t github:BirdeeHub/nixCats-nvim#example.
This commit is contained in:
Gabe Venberg 2025-06-27 21:05:54 +02:00
commit 9a78fd2d53
21 changed files with 2208 additions and 0 deletions

26
lua/myLuaConf/lint.lua Normal file
View file

@ -0,0 +1,26 @@
require('lze').load {
{
"nvim-lint",
for_cat = 'lint',
-- cmd = { "" },
event = "FileType",
-- ft = "",
-- keys = "",
-- colorscheme = "",
after = function (plugin)
require('lint').linters_by_ft = {
-- NOTE: download some linters in lspsAndRuntimeDeps
-- and configure them here
-- markdown = {'vale',},
-- javascript = { 'eslint' },
-- typescript = { 'eslint' },
}
vim.api.nvim_create_autocmd({ "BufWritePost" }, {
callback = function()
require("lint").try_lint()
end,
})
end,
},
}