summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlouie <louie@example.com>2022-07-21 19:47:56 -0700
committerlouie <louie@example.com>2022-07-21 19:47:56 -0700
commitd6c8181f4425d183fbf574b40638bd604db680ba (patch)
tree7386d1408dc806a5c5bd45142e37a56489e773a6
parentb99944169ec2ee847aedebfcd6473777e3355930 (diff)
Removed null-ls
-rw-r--r--lua/user/lsp/init.lua1
-rw-r--r--lua/user/lsp/null-ls.lua21
-rw-r--r--lua/user/plugins.lua1
3 files changed, 0 insertions, 23 deletions
diff --git a/lua/user/lsp/init.lua b/lua/user/lsp/init.lua
index 94a571e..a62e7aa 100644
--- a/lua/user/lsp/init.lua
+++ b/lua/user/lsp/init.lua
@@ -5,4 +5,3 @@ end
require("user.lsp.lsp-installer")
require("user.lsp.handlers").setup()
-require("user.lsp.null-ls")
diff --git a/lua/user/lsp/null-ls.lua b/lua/user/lsp/null-ls.lua
deleted file mode 100644
index ea51e87..0000000
--- a/lua/user/lsp/null-ls.lua
+++ /dev/null
@@ -1,21 +0,0 @@
-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,
- },
-}
diff --git a/lua/user/plugins.lua b/lua/user/plugins.lua
index 7d59dec..4f4eaa1 100644
--- a/lua/user/plugins.lua
+++ b/lua/user/plugins.lua
@@ -30,7 +30,6 @@ return packer.startup(function(use)
-- LSP
use "neovim/nvim-lspconfig" -- enable LSP
use "williamboman/nvim-lsp-installer" -- simple to use language server installer
- use "jose-elias-alvarez/null-ls.nvim" -- for formatters and linters
-- TreeSitter