dotfiles/.config/nvchad/custom/configs/null-ls.lua

29 lines
539 B
Lua

local present, null_ls = pcall(require, "null-ls")
if not present then
return
end
local b = null_ls.builtins
local sources = {
-- webdev stuff
b.formatting.deno_fmt, -- choosed deno for ts/js files cuz its very fast!
b.formatting.prettier.with { filetypes = { "html", "markdown", "css" } }, -- so prettier works only on these filetypes
-- Lua
b.formatting.stylua,
-- cpp
b.formatting.clang_format,
b.formatting.stylish_haskell,
b.diagnostics.shellcheck,
}
null_ls.setup {
debug = true,
sources = sources,
}