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";
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
'';
};
};