From a12fe9a81accfa52836b604d6c9b3b84473ac631 Mon Sep 17 00:00:00 2001 From: Hadi <112569860+anotherhadi@users.noreply.github.com> Date: Wed, 16 Apr 2025 19:45:24 +0200 Subject: [PATCH] add Aerial (tags) Former-commit-id: 44686a7b38bcf250bc89ae13d17269a866ba702e --- home/programs/nvim/plugins/utils.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/home/programs/nvim/plugins/utils.nix b/home/programs/nvim/plugins/utils.nix index 7385ecc..8b381bd 100644 --- a/home/programs/nvim/plugins/utils.nix +++ b/home/programs/nvim/plugins/utils.nix @@ -15,6 +15,7 @@ tmux-navigator.enable = true; todo-comments.enable = true; lualine = { enable = true; }; + aerial.enable = true; treesitter = { enable = true; nixGrammars = true; @@ -25,5 +26,12 @@ }; }; }; + keymaps = [ + { + key = "ct"; + action = "AerialToggle"; + options.desc = "Aerial (tags)"; + } + ]; }; }