mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-11-07 22:55:58 +01:00
17 lines
145 B
Nix
17 lines
145 B
Nix
|
{
|
||
|
pkgs,
|
||
|
config,
|
||
|
lib,
|
||
|
...
|
||
|
}:
|
||
|
with lib;
|
||
|
with builtins; let
|
||
|
cfg = config.vim.lsp;
|
||
|
in {
|
||
|
options.vim.lsp = {
|
||
|
/*
|
||
|
...
|
||
|
*/
|
||
|
};
|
||
|
}
|