diff options
| author | christianchiarulli <chrisatmachine@gmail.com> | 2021-12-14 18:25:42 -0500 |
|---|---|---|
| committer | christianchiarulli <chrisatmachine@gmail.com> | 2021-12-14 18:25:42 -0500 |
| commit | 0b689f091596b1f6a06e74d40b379a722953d919 (patch) | |
| tree | 730cf9bda8816a6056ec3cd07d1f486b27530863 /lua/user/lsp/null-ls.lua | |
| parent | 1027d8cb1684c38315969ea7417398bd57948614 (diff) | |
add null-ls
Diffstat (limited to 'lua/user/lsp/null-ls.lua')
| -rw-r--r-- | lua/user/lsp/null-ls.lua | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/lua/user/lsp/null-ls.lua b/lua/user/lsp/null-ls.lua new file mode 100644 index 0000000..874e19c --- /dev/null +++ b/lua/user/lsp/null-ls.lua @@ -0,0 +1,19 @@ +local null_ls_status_ok, null_ls = pcall(require, "null-ls") +if not null_ls_status_ok then + return +end + +-- https://github.com/jose-elias-alvarez/null-ls.nvim/tree/main/lua/null-ls/builtins/formatting +local formatting = null_ls.builtins.formatting +-- https://github.com/jose-elias-alvarez/null-ls.nvim/tree/main/lua/null-ls/builtins/diagnostics +local diagnostics = null_ls.builtins.diagnostics + +null_ls.setup({ + debug = false, + sources = { + formatting.prettier.with({ extra_args = { "--no-semi", "--single-quote", "--jsx-single-quote" } }), + formatting.black.with({ extra_args = { "--fast" } }), + formatting.stylua, + -- diagnostics.flake8 + }, +}) |
