From c491d6d3af6d607930d220b7e70617a535521cad Mon Sep 17 00:00:00 2001 From: louie Date: Sun, 17 Jul 2022 13:45:10 -0700 Subject: Added null-ls --- lua/user/lsp/null-ls.lua | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 lua/user/lsp/null-ls.lua (limited to 'lua/user/lsp/null-ls.lua') diff --git a/lua/user/lsp/null-ls.lua b/lua/user/lsp/null-ls.lua new file mode 100644 index 0000000..ea51e87 --- /dev/null +++ b/lua/user/lsp/null-ls.lua @@ -0,0 +1,21 @@ +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 = { + -- Examples: + --formatting.prettier.with { extra_args = { "--no-semi", "--single-quote", "--jsx-single-quote" } }, + --formatting.black.with { extra_args = { "--fast" } }, + --formatting.yapf, + --formatting.stylua, + --diagnostics.flake8, + }, +} -- cgit