HELLO NvChad

This commit is contained in:
2023-12-16 23:48:41 -05:00
parent c8777040fb
commit fb4b0a7261
11 changed files with 398 additions and 1 deletions

View File

@@ -0,0 +1,21 @@
local null_ls = require "null-ls"
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,
}
null_ls.setup {
debug = true,
sources = sources,
}