From bc198142d4897f48cb914445490ce45de0d75a34 Mon Sep 17 00:00:00 2001 From: Soispha Date: Fri, 25 Aug 2023 12:30:36 +0200 Subject: Fix(hm/conf/neovim/plugins/telescope): Init --- .../nixvim/plugins/telescope/defaults/default.nix | 31 ++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 home-manager/soispha/config/neovim/nixvim/plugins/telescope/defaults/default.nix (limited to 'home-manager/soispha/config/neovim/nixvim/plugins/telescope/defaults') diff --git a/home-manager/soispha/config/neovim/nixvim/plugins/telescope/defaults/default.nix b/home-manager/soispha/config/neovim/nixvim/plugins/telescope/defaults/default.nix new file mode 100644 index 00000000..e8dffca8 --- /dev/null +++ b/home-manager/soispha/config/neovim/nixvim/plugins/telescope/defaults/default.nix @@ -0,0 +1,31 @@ +{...}: { + programs.nixvim.plugins.telescope.defaults = { + mappings = let + insert_and_normal_mappings = { + # map actions.which_key to (default: ) + # actions.which_key shows the mappings for your picker, + # e.g. git_{create, delete, ...}_branch for the git_branches picker + "" = "which_key"; + }; + in { + i = + insert_and_normal_mappings; + n = + { + "t" = "move_selection_next"; + "n" = "move_selection_previous"; + "" = "toggle_all"; + + "" = "preview_scrolling_up"; + "" = "preview_scrolling_down"; + "" = "preview_scrolling_left"; + "" = "preview_scrolling_right"; + + "" = "close"; + "q" = "close"; + } + // insert_and_normal_mappings; + }; + + }; +} -- cgit 1.4.1