configuration.nix/cfg/nvim/custom/configs/null-ls.lua

28 lines
504 B
Lua
Raw Normal View History

2023-07-02 17:50:25 +02:00
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.alejandra
}
null_ls.setup {
debug = true,
sources = sources,
}