feat: add neovim config w/ nvchad v2.0
This commit is contained in:
parent
8a5ee43828
commit
e573ccda4b
9 changed files with 256 additions and 0 deletions
21
home/private_dot_config/nvim/lua/custom/configs/null-ls.lua
Normal file
21
home/private_dot_config/nvim/lua/custom/configs/null-ls.lua
Normal 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,
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue