mirror of
https://github.com/ViViDboarder/vim-settings.git
synced 2024-12-22 17:27:34 +00:00
Remove ale from lua
This commit is contained in:
parent
43ef210795
commit
204fd57199
@ -317,13 +317,6 @@ use({
|
|||||||
end,
|
end,
|
||||||
})
|
})
|
||||||
|
|
||||||
use({
|
|
||||||
"dense-analysis/ale",
|
|
||||||
config = function()
|
|
||||||
require("plugins.ale")
|
|
||||||
end,
|
|
||||||
})
|
|
||||||
|
|
||||||
-- Debuging nvim config
|
-- Debuging nvim config
|
||||||
use({
|
use({
|
||||||
"tweekmonster/startuptime.vim",
|
"tweekmonster/startuptime.vim",
|
||||||
|
@ -1,44 +0,0 @@
|
|||||||
vim.g["airline#extensions#ale#enabled"] = 1
|
|
||||||
vim.g.ale_lint_on_enter = 0
|
|
||||||
vim.g.ale_go_golangci_lint_package = 1
|
|
||||||
vim.g.ale_disable_lsp = 1
|
|
||||||
vim.g.ale_linters = {
|
|
||||||
go = {},
|
|
||||||
rust = {},
|
|
||||||
python = {},
|
|
||||||
lua = {},
|
|
||||||
-- sh = {'language_server', 'shell', 'shellcheck'},
|
|
||||||
sh = {},
|
|
||||||
text = {},
|
|
||||||
markdown = {},
|
|
||||||
fish = {},
|
|
||||||
ansible = {},
|
|
||||||
dockerfile = {},
|
|
||||||
}
|
|
||||||
vim.g.ale_linter_aliases = {
|
|
||||||
markdown = { "text" },
|
|
||||||
}
|
|
||||||
local pretty_trim_fixer = {
|
|
||||||
"prettier",
|
|
||||||
"trim_whitespace",
|
|
||||||
"remove_trailing_lines",
|
|
||||||
}
|
|
||||||
vim.g.ale_fixers = {
|
|
||||||
["*"] = { "trim_whitespace", "remove_trailing_lines" },
|
|
||||||
-- go = {"gofmt", "goimports"},
|
|
||||||
json = pretty_trim_fixer,
|
|
||||||
-- rust = {"rustfmt"},
|
|
||||||
--[[
|
|
||||||
python = {
|
|
||||||
"black",
|
|
||||||
"autopep8",
|
|
||||||
"reorder-python-imports",
|
|
||||||
"remove_trailing_lines",
|
|
||||||
"trim_whitespace",
|
|
||||||
},
|
|
||||||
--]]
|
|
||||||
markdown = pretty_trim_fixer,
|
|
||||||
yaml = { "prettier", "remove_trailing_lines" },
|
|
||||||
css = pretty_trim_fixer,
|
|
||||||
javascript = pretty_trim_fixer,
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user