HELLO NvChad

This commit is contained in:
2026-09-07 02:35:31 -04:00
committed by thread
parent add44b952d
commit 649dab28c8
11 changed files with 428 additions and 0 deletions
+21
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,
}