From 66731e0e2107766fe7b1d778d1a2647764e16f9b Mon Sep 17 00:00:00 2001 From: Jeremy Kaplan Date: Fri, 15 Dec 2023 22:36:19 -0800 Subject: [PATCH] neovim: Remove null-ls --- neovim/lazy-lock.json | 2 -- neovim/lua/plugins/ide.lua | 29 ----------------------------- 2 files changed, 31 deletions(-) diff --git a/neovim/lazy-lock.json b/neovim/lazy-lock.json index 6b2d9a2..46cfd09 100644 --- a/neovim/lazy-lock.json +++ b/neovim/lazy-lock.json @@ -9,12 +9,10 @@ "lazy.nvim": { "branch": "main", "commit": "2a9354c7d2368d78cbd5575a51a2af5bd8a6ad01" }, "lush.nvim": { "branch": "main", "commit": "a8f0f7b9f837887f13a61d67b40ae26188fe4d62" }, "mason-lspconfig.nvim": { "branch": "main", "commit": "01b4b6724ebcf5b43fc021486f6a260f1d09311e" }, - "mason-null-ls.nvim": { "branch": "main", "commit": "ae0c5fa57468ac65617f1bf821ba0c3a1e251f0c" }, "mason.nvim": { "branch": "main", "commit": "d66c60e17dd6fd8165194b1d14d21f7eb2c1697a" }, "nerdtree": { "branch": "master", "commit": "32168889bdbc1e7d1d313e3e41c1cc794b38eac5" }, "nim.nvim": { "branch": "master", "commit": "076239e8869e3e9b061b17cbca2cea2df73d5f92" }, "nui.nvim": { "branch": "main", "commit": "c8de23342caf8d50b15d6b28368d36a56a69d76f" }, - "null-ls.nvim": { "branch": "main", "commit": "0010ea927ab7c09ef0ce9bf28c2b573fc302f5a7" }, "nvim-autopairs": { "branch": "master", "commit": "defad64afbf19381fe31488a7582bbac421d6e38" }, "nvim-cmp": { "branch": "main", "commit": "5dce1b778b85c717f6614e3f4da45e9f19f54435" }, "nvim-dap": { "branch": "master", "commit": "0e6b7c47dd70e80793ed39271b2aa712d9366dbc" }, diff --git a/neovim/lua/plugins/ide.lua b/neovim/lua/plugins/ide.lua index 6b86a33..bd8f6bd 100644 --- a/neovim/lua/plugins/ide.lua +++ b/neovim/lua/plugins/ide.lua @@ -301,13 +301,6 @@ return { "alaviss/nim.nvim", "simrat39/rust-tools.nvim", "neovim/nvim-lspconfig", - { - "jose-elias-alvarez/null-ls.nvim", - dependencies = { - "neovim/nvim-lspconfig", - "nvim-lua/plenary.nvim", - }, - }, { "williamboman/mason.nvim", build = function(_plugin) @@ -459,28 +452,6 @@ return { }) end, }, - { - "jay-babu/mason-null-ls.nvim", - event = { "BufReadPre", "BufNewFile" }, - dependencies = { - "jose-elias-alvarez/null-ls.nvim", - "williamboman/mason.nvim", - }, - init = function() - local mason_null_ls = require("mason-null-ls") - local null_ls = require("null-ls") - - mason_null_ls.setup({ - handlers = { - black = function(source_name, methods) - null_ls.register(null_ls.builtins.formatting.black) - - mason_null_ls.default_setup(source_name, methods) - end, - }, - }) - end, - }, -- Completion + snippets { "hrsh7th/cmp-nvim-lsp", branch = "main" },