adding lsp

This commit is contained in:
Arthur Wambst 2025-03-18 22:14:50 +01:00
parent b250105afa
commit 0f327fde1b

View File

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