enable telescope
This commit is contained in:
parent
536a40dc3b
commit
9d3fffeed0
1 changed files with 22 additions and 0 deletions
|
@ -13,6 +13,10 @@
|
||||||
extraPlugins = with pkgs.vimPlugins; [
|
extraPlugins = with pkgs.vimPlugins; [
|
||||||
dracula-vim
|
dracula-vim
|
||||||
];
|
];
|
||||||
|
extraPackages = with pkgs; [
|
||||||
|
fd
|
||||||
|
ripgrep
|
||||||
|
];
|
||||||
options = {
|
options = {
|
||||||
autowrite = true;
|
autowrite = true;
|
||||||
background = "dark";
|
background = "dark";
|
||||||
|
@ -55,6 +59,14 @@
|
||||||
silent = true;
|
silent = true;
|
||||||
action = "<cmd>:Neotree toggle<Return>";
|
action = "<cmd>:Neotree toggle<Return>";
|
||||||
};
|
};
|
||||||
|
"<leader>ff" = {
|
||||||
|
silent = true;
|
||||||
|
action = "<cmd>:Telescope find_files<Return>";
|
||||||
|
};
|
||||||
|
"<leader>fg" = {
|
||||||
|
silent = true;
|
||||||
|
action = "<cmd>:Telescope live_grep<Return>";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
plugins = {
|
plugins = {
|
||||||
|
@ -128,6 +140,16 @@
|
||||||
{name = "treesitter";}
|
{name = "treesitter";}
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
telescope = {
|
||||||
|
enable = true;
|
||||||
|
extensions = {
|
||||||
|
fzf-native = {
|
||||||
|
enable = true;
|
||||||
|
caseMode = "smart_case";
|
||||||
|
fuzzy = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
treesitter = {
|
treesitter = {
|
||||||
enable = true;
|
enable = true;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue