From 91f3bcda95669ea0a3b5270c0aada846d8963c1b Mon Sep 17 00:00:00 2001 From: Will Ruggiano Date: Wed, 28 Feb 2024 05:16:20 -0700 Subject: [PATCH] feat(plug): antosha417/nvim-lsp-file-operations --- nix/sources.json | 6 ++++++ plugins/spec.nix | 19 ++++++++----------- 2 files changed, 14 insertions(+), 11 deletions(-) diff --git a/nix/sources.json b/nix/sources.json index efb2edd..032ba14 100644 --- a/nix/sources.json +++ b/nix/sources.json @@ -293,6 +293,12 @@ "rev": "24fc62f0dee1e388e522795a9a8e9eac60b047e3", "type": "git" }, + "nvim-lsp-file-operations": { + "branch": "master", + "repo": "git@github.com:antosha417/nvim-lsp-file-operations", + "rev": "223aca86b737dc66e9c51ebcda8788a8d9cc6cf2", + "type": "git" + }, "nvim-lspconfig": { "branch": "master", "repo": "git@github.com:neovim/nvim-lspconfig", diff --git a/plugins/spec.nix b/plugins/spec.nix index 14abca8..44c0e5c 100644 --- a/plugins/spec.nix +++ b/plugins/spec.nix @@ -277,22 +277,19 @@ in rec { }; }; - # lir = { - # config = ./lir.lua; - # dependencies = { - # inherit nvim-web-devicons overseer plenary; - # git_status = { - # src = sources."lir-git-status.nvim"; - # }; - # }; - # src = sources."lir.nvim"; - # }; + lsp-file-operations = { + src = sources.nvim-lsp-file-operations; + config = true; + dependencies = { + inherit neo-tree; + }; + }; lspconfig = { src = sources.nvim-lspconfig; config = ./lsp.lua; dependencies = { - inherit conform fun lspkind sg; + inherit conform fun lsp-file-operations lspkind sg; clangd_extensions = { src = sources."clangd_extensions.nvim"; };