mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-01 19:11:15 +00:00
30 lines
555 B
Nix
30 lines
555 B
Nix
{
|
|
pkgs,
|
|
config,
|
|
lib,
|
|
...
|
|
}:
|
|
with lib;
|
|
with builtins; let
|
|
cfg = config.vim.minimap.codewindow;
|
|
in {
|
|
options.vim.minimap.codewindow = {
|
|
enable = mkEnableOption "Enable minimap-vim plugin";
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
vim.startPlugins = [
|
|
"codewindow-nvim"
|
|
];
|
|
|
|
vim.luaConfigRC.codewindow = nvim.dag.entryAnywhere ''
|
|
local codewindow = require('codewindow')
|
|
codewindow.setup({
|
|
exclude_filetypes = { 'NvimTree', 'orgagenda'},
|
|
}
|
|
)
|
|
codewindow.apply_default_keybinds()
|
|
'';
|
|
};
|
|
}
|