This repository has been archived on 2024-05-17. You can view files and clone it, but cannot push or open issues or pull requests.
neovim/plugins/lsp/default.nix

14 lines
163 B
Nix
Raw Normal View History

2022-09-19 20:43:20 +03:00
{ nvim-lspconfig
, lspsaga-nvim
, ...
}:
2022-09-16 23:42:53 +03:00
2022-09-19 20:43:20 +03:00
let
lsp = [ nvim-lspconfig lspsaga-nvim ];
in
{
2022-10-02 22:41:49 +03:00
luaConfig = (builtins.readFile ./lspconfig.lua);
2022-09-19 20:43:20 +03:00
2022-10-02 22:41:49 +03:00
plugins = lsp;
2022-09-16 09:59:25 +03:00
}