This commit is contained in:
2023-03-07 01:02:57 +01:00
parent 41357c5deb
commit 34b1fcb76d
4 changed files with 5 additions and 7 deletions

View File

@@ -22,7 +22,7 @@
fi
# remote-exec
it command -v remote >/dev/null && remote-quick >/dev/null; then
if command -v remote >/dev/null && remote-quick >/dev/null; then
complete -F _command remote
complete -F _command remote-quick
fi

View File

@@ -1,7 +1,5 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [ mpv ];
programs.mpv.enable = true;
programs.mpv.bindings."n" = "sub-seek 1";
programs.mpv.bindings."SHIFT+n" = "sub-seek -1";

View File

@@ -80,7 +80,7 @@
export PS1='\[\033[01;32m\]\u@\h\[\033[01;37m\] \[\033[01;34m\]\W\[\033[33m\]$(parse_git_branch)\[\033[01;32m\]\$\[\033[00m\] '
# tldr
it command -v tldr >/dev/null; then
if command -v tldr >/dev/null; then
complete -F _command tldr
fi
'';