mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-01 19:11:15 +00:00
19 lines
313 B
Nix
19 lines
313 B
Nix
{
|
|
pkgs,
|
|
config,
|
|
lib,
|
|
...
|
|
}:
|
|
with lib;
|
|
with builtins; {
|
|
options.vim.lsp.lspconfig = {
|
|
enable = mkEnableOption "nvim-lspconfig, also enabled automatically";
|
|
|
|
sources = mkOption {
|
|
description = "nvim-lspconfig sources";
|
|
type = with types; attrsOf str;
|
|
default = {};
|
|
};
|
|
};
|
|
}
|