mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-17 08:29:41 +00:00
home-manager: move feh to common
This commit is contained in:
parent
e4646f8e65
commit
15e7705413
3 changed files with 1 additions and 2 deletions
26
nix/homeModules/common/feh.nix
Normal file
26
nix/homeModules/common/feh.nix
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
{
|
||||
|
||||
programs.feh = {
|
||||
keybindings = {
|
||||
prev_img = [
|
||||
"Left"
|
||||
"Up"
|
||||
];
|
||||
next_img = [
|
||||
"Right"
|
||||
"Down"
|
||||
];
|
||||
|
||||
scroll_left = "h";
|
||||
scroll_right = "l";
|
||||
scroll_up = "k";
|
||||
scroll_down = "j";
|
||||
|
||||
# mimic sioyek
|
||||
zoom_in = "plus";
|
||||
zoom_out = "minus";
|
||||
zoom_fit = "=";
|
||||
};
|
||||
};
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue