mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-02 11:31:15 +00:00
25 lines
614 B
Nix
25 lines
614 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: let
|
|
inherit (lib.modules) mkIf;
|
|
inherit (lib.nvim.lua) toLuaObject;
|
|
inherit (lib.nvim.dag) entryAfter;
|
|
|
|
inherit (config.vim) treesitter;
|
|
cfg = treesitter.context;
|
|
in {
|
|
config = mkIf (treesitter.enable && cfg.enable) {
|
|
vim = {
|
|
startPlugins = ["nvim-treesitter-context"];
|
|
|
|
# set up treesitter-context after Treesitter. The ordering
|
|
# should not matter, but there is no harm in doing this
|
|
luaConfigRC.treesitter-context = entryAfter ["treesitter"] ''
|
|
require("treesitter-context").setup(${toLuaObject cfg.setupOpts})
|
|
'';
|
|
};
|
|
};
|
|
}
|