25 lines
586 B
Nix
25 lines
586 B
Nix
{
|
|
plugins = {
|
|
telescope = {
|
|
enable = true;
|
|
keymaps = {
|
|
"<leader>ff" = {
|
|
action = "find_files";
|
|
options = { desc = "Telescope find files"; };
|
|
};
|
|
"<leader>fg" = {
|
|
action = "live_grep";
|
|
options = { desc = "Telescope live grep"; };
|
|
};
|
|
"<leader>fb" = {
|
|
action = "buffers";
|
|
options = { desc = "Telescope buffers"; };
|
|
};
|
|
"<leader>fh" = {
|
|
action = "help_tags";
|
|
options = { desc = "Telescope help tags"; };
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|