Added telescope extensions
This commit is contained in:
parent
d3aa2d0800
commit
cf0bb60e0f
|
@ -7,6 +7,7 @@
|
||||||
./plugins/lsp.nix
|
./plugins/lsp.nix
|
||||||
./plugins/lualine.nix
|
./plugins/lualine.nix
|
||||||
./plugins/rhubarb.nix
|
./plugins/rhubarb.nix
|
||||||
|
./plugins/telescope.nix
|
||||||
./plugins/vim-obsession.nix
|
./plugins/vim-obsession.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -61,7 +62,6 @@
|
||||||
];
|
];
|
||||||
|
|
||||||
plugins = {
|
plugins = {
|
||||||
telescope.enable = true;
|
|
||||||
treesitter.enable = true;
|
treesitter.enable = true;
|
||||||
tmux-navigator.enable = true;
|
tmux-navigator.enable = true;
|
||||||
fugitive.enable = true;
|
fugitive.enable = true;
|
||||||
|
|
33
config/plugins/telescope.nix
Normal file
33
config/plugins/telescope.nix
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
{
|
||||||
|
plugins.telescope = {
|
||||||
|
enable = true;
|
||||||
|
extensions = {
|
||||||
|
file-browser = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
hijack_netrw = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
frecency.enable = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
keymaps = [
|
||||||
|
{
|
||||||
|
action = "<cmd>Telescope frecency<CR>";
|
||||||
|
key = "<leader>f";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
action = "<cmd>Telescope live_grep<CR>";
|
||||||
|
key = "<leader>g";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
action = "<cmd>Telescope file_browser path=%:p:h select_buffer=true<CR>";
|
||||||
|
key = "<leader>b";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
action = "<cmd>Telescope file_browser<CR>";
|
||||||
|
key = "<leader>B";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
}
|
Loading…
Reference in a new issue