fmt: reformatted using nixpkgs-fmt prettifier mpd: created configuration hypr: add window rules commons: add usingMusicPlayerDaemon variable
15 lines
285 B
Nix
15 lines
285 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; };
|
|
};
|
|
}
|