Evie Litherland-Smith
91166300c0
Update hyprland binds to spawn nnn (and ncspot, using tmux as well) Add more nnn bookmarks
21 lines
341 B
Nix
21 lines
341 B
Nix
{ config, lib, pkgs, nnn, ... }:
|
|
|
|
{
|
|
programs.nnn = {
|
|
enable = true;
|
|
bookmarks = {
|
|
d = "~/Documents";
|
|
D = "~/Downloads";
|
|
p = "~/Pictures";
|
|
v = "~/Videos";
|
|
m = "~/Music";
|
|
o = "~/Org";
|
|
P = "~/Projects";
|
|
};
|
|
plugins = {
|
|
src = "${nnn}/plugins";
|
|
mappings = { };
|
|
};
|
|
};
|
|
}
|