mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-02 03:21:14 +00:00
32 lines
630 B
Nix
32 lines
630 B
Nix
|
{
|
||
|
pkgs,
|
||
|
config,
|
||
|
lib,
|
||
|
...
|
||
|
}:
|
||
|
with lib;
|
||
|
with builtins; let
|
||
|
cfg = config.vim.treesitter;
|
||
|
in {
|
||
|
options.vim.treesitter.context.enable = mkOption {
|
||
|
type = types.bool;
|
||
|
default = false;
|
||
|
description = "enable function context [nvim-treesitter-context]";
|
||
|
};
|
||
|
|
||
|
config = mkIf (cfg.enable && cfg.context.enable) {
|
||
|
vim.startPlugins = [
|
||
|
"nvim-treesitter-context"
|
||
|
];
|
||
|
|
||
|
vim.luaConfigRC.treesitter-context = nvim.dag.entryAnywhere ''
|
||
|
-- Treesitter Context config
|
||
|
require'treesitter-context'.setup {
|
||
|
enable = true,
|
||
|
throttle = true,
|
||
|
max_lines = 0
|
||
|
}
|
||
|
'';
|
||
|
};
|
||
|
}
|