diff --git a/flake.nix b/flake.nix index d8471af..92f7772 100644 --- a/flake.nix +++ b/flake.nix @@ -17,6 +17,10 @@ url = "github:ellisonleao/gruvbox.nvim"; flake = false; }; + plugin-lsp = { + url = "https://github.com/neovim/nvim-lspconfig"; + flake = false; + } }; outputs = { self, nixpkgs, neovim, ... }@inputs: { @@ -29,7 +33,8 @@ enable = true; configure.customRC = '' set runtimepath+=${inputs.plugin-dracula} - colorscheme dracula + set runtimepath+=${inputs.plugin-lsp} + colorscheme dracula ''; }; };