diff --git a/README.md b/README.md index 15f91043..6b95a436 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,3 @@ # dotfiles This is a collection of my dotfiles, configuration and some other scripts. - diff --git a/nvim/lua/config/null-ls.lua b/nvim/lua/config/null-ls.lua index a74a9c5e..0e5db563 100644 --- a/nvim/lua/config/null-ls.lua +++ b/nvim/lua/config/null-ls.lua @@ -9,24 +9,18 @@ local sources = { b.code_actions.eslint_d, -- css and scss-files - b.diagnostics.stylelint.with({ - prefer_local = 'node_modules/.bin', - }), - b.formatting.stylelint.with({ - prefer_local = 'node_modules/.bin', - }), + b.diagnostics.stylelint.with({ prefer_local = 'node_modules/.bin' }), + b.formatting.stylelint.with({ prefer_local = 'node_modules/.bin' }), - -- markdown, json and yaml + -- markdown b.diagnostics.markdownlint, b.formatting.markdownlint, - b.diagnostics.yamllint, - b.formatting.fixjson, -- other languages b.diagnostics.php, b.diagnostics.tsc, - b.code_actions.shellcheck, - b.diagnostics.shellcheck, + b.diagnostics.yamllint, + b.formatting.fixjson, } null_ls.setup({