mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 07:32:55 +00:00
35 lines
769 B
Nix
35 lines
769 B
Nix
{ pkgs, dsl, ... }: {
|
|
|
|
plugins = [
|
|
pkgs.vimPlugins.telescope-nvim
|
|
pkgs.vimPlugins.telescope-project-nvim
|
|
pkgs.vimPlugins.telescope-fzy-native-nvim
|
|
pkgs.vimPlugins.telescope-file-browser-nvim
|
|
pkgs.vimPlugins.telescope-zoxide
|
|
];
|
|
|
|
setup.telescope = {
|
|
defaults = {
|
|
mappings = {
|
|
i = {
|
|
"['<esc>']" = dsl.rawLua "require('telescope.actions').close";
|
|
"['<C-h>']" = "which_key";
|
|
};
|
|
};
|
|
};
|
|
pickers = {
|
|
find_files = { theme = "ivy"; };
|
|
oldfiles = { theme = "ivy"; };
|
|
buffers = { theme = "dropdown"; };
|
|
};
|
|
extensions = {
|
|
fzy_native = { };
|
|
zoxide = { };
|
|
project = { base_dirs = [ "~/dev" ]; };
|
|
};
|
|
};
|
|
|
|
lua = builtins.readFile ./telescope.lua;
|
|
|
|
}
|