aboutsummaryrefslogtreecommitdiffstats
path: root/modules/home/conf/mpv
diff options
context:
space:
mode:
Diffstat (limited to 'modules/home/conf/mpv')
-rw-r--r--modules/home/conf/mpv/default.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/modules/home/conf/mpv/default.nix b/modules/home/conf/mpv/default.nix
new file mode 100644
index 00000000..6b252a38
--- /dev/null
+++ b/modules/home/conf/mpv/default.nix
@@ -0,0 +1,10 @@
+{...}: {
+ programs.mpv = {
+ enable = true;
+ bindings = {
+ q = "quit 0";
+ "Ctrl+c" = "quit 1";
+ "Shift+q" = "quit-watch-later 1";
+ };
+ };
+}