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/init.lua | 1 + lua/user/lsp/null-ls.lua | 21 +++++++++++++++++++++ lua/user/plugins.lua | 30 ++++++++++++++++-------------- 3 files changed, 38 insertions(+), 14 deletions(-) create mode 100644 lua/user/lsp/null-ls.lua (limited to 'lua') diff --git a/lua/user/lsp/init.lua b/lua/user/lsp/init.lua index a62e7aa..94a571e 100644 --- a/lua/user/lsp/init.lua +++ b/lua/user/lsp/init.lua @@ -5,3 +5,4 @@ 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 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, + }, +} diff --git a/lua/user/plugins.lua b/lua/user/plugins.lua index 85e9f55..401f8a2 100644 --- a/lua/user/plugins.lua +++ b/lua/user/plugins.lua @@ -1,35 +1,37 @@ -- Use a protected call so we don't error out on first use local status_ok, packer = pcall(require, "packer") if not status_ok then - return + return end -- Install your plugins here return packer.startup(function(use) -- My plugins here - use "wbthomason/packer.nvim" -- Have packer manage itself + use "wbthomason/packer.nvim" -- Have packer manage itself --use "nvim-lua/popup.nvim" -- An implementation of the Popup API from vim in Neovim --use "nvim-lua/plenary.nvim" -- Useful lua functions used by lots of plugins - + -- Colorschemes --use "lunarvim/colorschemes" -- Additional colorschemes - + -- cmp plugins - use "hrsh7th/nvim-cmp" -- The completion plugin - use "hrsh7th/cmp-buffer" -- Buffer completions - use "hrsh7th/cmp-path" -- Path completions - use "hrsh7th/cmp-cmdline" -- Cmdline completions - use "saadparwaiz1/cmp_luasnip" -- snippet completions - use "hrsh7th/cmp-nvim-lsp" -- lsp completion - use "hrsh7th/cmp-nvim-lua" -- config completion + use "hrsh7th/nvim-cmp" -- The completion plugin + use "hrsh7th/cmp-buffer" -- Buffer completions + use "hrsh7th/cmp-path" -- Path completions + use "hrsh7th/cmp-cmdline" -- Cmdline completions + use "saadparwaiz1/cmp_luasnip" -- snippet completions + use "hrsh7th/cmp-nvim-lsp" -- lsp completion + use "hrsh7th/cmp-nvim-lua" -- config completion -- snippets - use "L3MON4D3/LuaSnip" --snippet engine + use "L3MON4D3/LuaSnip" --snippet engine --use "rafamadriz/friendly-snippets" --a bunch of snippets to use - + -- LSP - use "neovim/nvim-lspconfig" -- enable 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 --use "nvim-treesitter/nvim-treesitter" --enable treesitter -- cgit