diff options
Diffstat (limited to 'nixvim/plugins/telescope.nix')
| -rw-r--r-- | nixvim/plugins/telescope.nix | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/nixvim/plugins/telescope.nix b/nixvim/plugins/telescope.nix new file mode 100644 index 0000000..32528af --- /dev/null +++ b/nixvim/plugins/telescope.nix @@ -0,0 +1,17 @@ +{ + keymaps = [ + { + action = "Telescope"; + key = "<leader>f"; + mode = "n"; + options = { + noremap = true; + silent = true; + }; + } + ]; + + plugins.telescope = { + enable = true; + }; +} |
