mirror of
https://github.com/halfdan/dotfiles.git
synced 2025-04-26 04:15:38 +00:00
13 lines
190 B
Lua
13 lines
190 B
Lua
local ok, nls = pcall(require, 'null-ls')
|
|
|
|
if not ok then
|
|
return
|
|
end
|
|
|
|
nls.setup({
|
|
sources = {
|
|
nls.builtins.formatting.stylua,
|
|
nls.builtins.diagnostics.credo,
|
|
},
|
|
})
|