summaryrefslogtreecommitdiff
path: root/lua/user/lsp/null-ls.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/user/lsp/null-ls.lua')
-rw-r--r--lua/user/lsp/null-ls.lua22
1 files changed, 10 insertions, 12 deletions
diff --git a/lua/user/lsp/null-ls.lua b/lua/user/lsp/null-ls.lua
index ec79994..b261418 100644
--- a/lua/user/lsp/null-ls.lua
+++ b/lua/user/lsp/null-ls.lua
@@ -1,20 +1,18 @@
local null_ls_status_ok, null_ls = pcall(require, "null-ls")
if not null_ls_status_ok then
- return
-end
+ return
-- 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.yapf,
- formatting.stylua,
- diagnostics.flake8,
- },
-}
+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
+ },
+})