Added nixvim as a flake input in flake.nix Added plugin definitions ini home-manager/stvnliu/nixvim/ Added configuration options for easy toggling for editors
15 lines
283 B
Nix
15 lines
283 B
Nix
{
|
|
plugins.telescope = {
|
|
enable = true;
|
|
keymaps = {
|
|
"<C-p>" = "live_grep";
|
|
"<leader>fg" = {
|
|
action = "git_files";
|
|
options = {
|
|
desc = "Telescope Git Files";
|
|
};
|
|
};
|
|
};
|
|
extensions.fzf-native = {enable = true;};
|
|
};
|
|
}
|