mirror of
https://github.com/marianozunino/nvim.git
synced 2025-06-28 18:43:50 -03:00
chore: move plugins to an upper level
This commit is contained in:
parent
9569774c7b
commit
99bcb4ca97
50 changed files with 69 additions and 69 deletions
44
lua/plugins/lint.lua
Normal file
44
lua/plugins/lint.lua
Normal file
|
@ -0,0 +1,44 @@
|
|||
local M = {
|
||||
"mfussenegger/nvim-lint",
|
||||
event = {
|
||||
"BufReadPre",
|
||||
"BufNewFile",
|
||||
},
|
||||
}
|
||||
|
||||
M.config = function()
|
||||
local lint = require("lint")
|
||||
|
||||
lint.linters_by_ft = {
|
||||
javascript = {
|
||||
"eslint_d",
|
||||
},
|
||||
typescript = {
|
||||
"eslint_d",
|
||||
},
|
||||
javascriptreact = {
|
||||
"eslint_d",
|
||||
},
|
||||
typescriptreact = {
|
||||
"eslint_d",
|
||||
},
|
||||
-- go = {
|
||||
-- "revive",
|
||||
-- },
|
||||
}
|
||||
|
||||
local lint_augroup = vim.api.nvim_create_augroup("lint", { clear = true })
|
||||
|
||||
vim.api.nvim_create_autocmd({ "BufWritePost", "InsertLeave", "BufEnter" }, {
|
||||
group = lint_augroup,
|
||||
callback = function()
|
||||
lint.try_lint()
|
||||
end,
|
||||
})
|
||||
|
||||
nmap("<leader>ll", function()
|
||||
lint.try_lint()
|
||||
end, { desc = "Trigger linting for current file" })
|
||||
end
|
||||
|
||||
return M
|
Loading…
Add table
Add a link
Reference in a new issue