home-manager: move feh to common

This commit is contained in:
Primrose 2024-11-19 20:21:07 +01:00
parent e4646f8e65
commit 15e7705413
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA
3 changed files with 1 additions and 2 deletions

View 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 = "=";
};
};
}