style: move telescope to own file
parent
f9fe6174f0
commit
a64752da5a
|
@ -29,41 +29,6 @@ in
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
{ plugins.oil.enable = true; }
|
{ plugins.oil.enable = true; }
|
||||||
{
|
|
||||||
plugins = {
|
|
||||||
telescope = {
|
|
||||||
enable = true;
|
|
||||||
extensions.fzf-native.enable = true;
|
|
||||||
keymaps = {
|
|
||||||
"<leader>ff" = {
|
|
||||||
action = "find_files";
|
|
||||||
options.desc = "Find files";
|
|
||||||
};
|
|
||||||
"<leader>fb" = {
|
|
||||||
action = "buffers";
|
|
||||||
options.desc = "Find buffers";
|
|
||||||
};
|
|
||||||
"<leader>fl" = {
|
|
||||||
action = "current_buffer_fuzzy_find";
|
|
||||||
options.desc = "Search lines";
|
|
||||||
};
|
|
||||||
"<leader>fg" = {
|
|
||||||
action = "live_grep";
|
|
||||||
options.desc = "Live grep";
|
|
||||||
};
|
|
||||||
"<leader>fh" = {
|
|
||||||
action = "help_tags";
|
|
||||||
options.desc = "Help tags";
|
|
||||||
};
|
|
||||||
"<leader>fr" = {
|
|
||||||
action = "oldfiles";
|
|
||||||
options.desc = "Recent files";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
web-devicons.enable = true;
|
|
||||||
};
|
|
||||||
}
|
|
||||||
{ plugins.nvim-autopairs.enable = true; }
|
{ plugins.nvim-autopairs.enable = true; }
|
||||||
{ plugins.vim-surround.enable = true; }
|
{ plugins.vim-surround.enable = true; }
|
||||||
{
|
{
|
||||||
|
|
|
@ -0,0 +1,39 @@
|
||||||
|
_:
|
||||||
|
|
||||||
|
{
|
||||||
|
home-manager.users.moritz.programs.nixvim = {
|
||||||
|
plugins = {
|
||||||
|
telescope = {
|
||||||
|
enable = true;
|
||||||
|
extensions.fzf-native.enable = true;
|
||||||
|
keymaps = {
|
||||||
|
"<leader>ff" = {
|
||||||
|
action = "find_files";
|
||||||
|
options.desc = "Find files";
|
||||||
|
};
|
||||||
|
"<leader>fb" = {
|
||||||
|
action = "buffers";
|
||||||
|
options.desc = "Find buffers";
|
||||||
|
};
|
||||||
|
"<leader>fl" = {
|
||||||
|
action = "current_buffer_fuzzy_find";
|
||||||
|
options.desc = "Search lines";
|
||||||
|
};
|
||||||
|
"<leader>fg" = {
|
||||||
|
action = "live_grep";
|
||||||
|
options.desc = "Live grep";
|
||||||
|
};
|
||||||
|
"<leader>fh" = {
|
||||||
|
action = "help_tags";
|
||||||
|
options.desc = "Help tags";
|
||||||
|
};
|
||||||
|
"<leader>fr" = {
|
||||||
|
action = "oldfiles";
|
||||||
|
options.desc = "Recent files";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
web-devicons.enable = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue