mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-23 17:28:39 +02:00
* barbar: package option * Base16: package option * gruvbox: package option * nord: package option * one: package option * onedark: package option * tokyonight: package option * nvim-cmp: package option * coq: package option * lspkind: package option * helpers: added package option to mkPlugin * fugitive: package option * gitgutter: package option * gitsigns: package option * neogit: package option * ledger: package option * nix: package option * plantuml-syntax: package option * treesitter-context: package option + formatting * treesitter-refactor: package option + formatting * treesitter: package option * zig: package option * null-ls: package option * null-ls/servers: package option * lsp-lines: package option * lspsaga: package option * trouble: package option * luasnip: added description for package option * airline: package option * lightline: package option * lualine: package option * telescope: package option * telescope/frecency: package option * telescope/fzf-native: package option * telescope/media-files: package option * comment-nvim: package option * vim-commentary: package option * dashboard: package option * easyescape: package option * emmet: package option * endwise: package option * floaterm: package option * goyo: package option * intellitab: package option * mark-radar: package option * notify: package option * nvim-autopairs: package option * nvim-tree: package option * project-nvim: package option * specs: package option * startify: package option * surround: package option * undotree: package option
62 lines
1.6 KiB
Nix
62 lines
1.6 KiB
Nix
{ pkgs
|
|
, lib
|
|
, config
|
|
, ...
|
|
}:
|
|
with lib; {
|
|
options.plugins.treesitter-context = {
|
|
enable = mkEnableOption "Enable nvim-treesitter-context";
|
|
|
|
package = mkOption {
|
|
type = types.package;
|
|
default = pkgs.vimPlugins.nvim-treesitter-context;
|
|
description = "Plugin to use for nvim-treesitter-context";
|
|
};
|
|
|
|
maxLines = mkOption {
|
|
type = types.nullOr types.ints.positive;
|
|
default = null;
|
|
description = "How many lines the window should span. Null means no limit";
|
|
};
|
|
|
|
trimScope = mkOption {
|
|
type = types.enum [ "outer" "inner" ];
|
|
default = "outer";
|
|
description = "Which context lines to discard if `max_lines` is exceeded";
|
|
};
|
|
|
|
maxWindowHeight = mkOption {
|
|
type = types.nullOr types.ints.positive;
|
|
default = null;
|
|
description = "Minimum editor window height to enable context";
|
|
};
|
|
|
|
patterns = mkOption {
|
|
type = types.attrsOf (types.listOf types.str);
|
|
default = { };
|
|
description = ''
|
|
Patterns to use for context delimitation. The 'default' key matches all filetypes
|
|
'';
|
|
};
|
|
|
|
exactPatterns = mkOption {
|
|
type = types.attrsOf types.bool;
|
|
default = { };
|
|
description = "Treat the coresponding entry in patterns as an exact match";
|
|
};
|
|
};
|
|
|
|
config =
|
|
let
|
|
cfg = config.plugins.treesitter-context;
|
|
in
|
|
mkIf cfg.enable {
|
|
extraPlugins = [ cfg.package ];
|
|
|
|
plugins.treesitter.moduleConfig.context = {
|
|
max_lines = cfg.maxLines;
|
|
trim_scope = cfg.trimScope;
|
|
min_window_height = cfg.maxWindowHeight;
|
|
};
|
|
};
|
|
}
|