diff options
Diffstat (limited to 'user-profiles')
-rw-r--r-- | user-profiles/mpv/default.nix | 2 | ||||
-rw-r--r-- | user-profiles/zsh/default.nix | 2 | ||||
-rw-r--r-- | user-profiles/zsh/zshrc | 4 |
3 files changed, 5 insertions, 3 deletions
diff --git a/user-profiles/mpv/default.nix b/user-profiles/mpv/default.nix index 83eba2a9..94f241c8 100644 --- a/user-profiles/mpv/default.nix +++ b/user-profiles/mpv/default.nix | |||
@@ -10,7 +10,7 @@ | |||
10 | (pkgs.stdenv.mkDerivation (sources.mpv-reload // rec { | 10 | (pkgs.stdenv.mkDerivation (sources.mpv-reload // rec { |
11 | installPhase = '' | 11 | installPhase = '' |
12 | install -d $out/share/mpv/scripts | 12 | install -d $out/share/mpv/scripts |
13 | install -m 0644 reload.lua $out/share/mpv/scripts/${passthru.scriptName} | 13 | install -m 0644 main.lua $out/share/mpv/scripts/${passthru.scriptName} |
14 | ''; | 14 | ''; |
15 | 15 | ||
16 | passthru.scriptName = "reload.lua"; | 16 | passthru.scriptName = "reload.lua"; |
diff --git a/user-profiles/zsh/default.nix b/user-profiles/zsh/default.nix index daeb7e82..428e2459 100644 --- a/user-profiles/zsh/default.nix +++ b/user-profiles/zsh/default.nix | |||
@@ -10,7 +10,7 @@ in { | |||
10 | enable = true; | 10 | enable = true; |
11 | autocd = true; | 11 | autocd = true; |
12 | enableCompletion = true; | 12 | enableCompletion = true; |
13 | 13 | ||
14 | plugins = [ | 14 | plugins = [ |
15 | { name = "powerlevel10k"; | 15 | { name = "powerlevel10k"; |
16 | file = "share/zsh-powerlevel10k/powerlevel10k.zsh-theme"; | 16 | file = "share/zsh-powerlevel10k/powerlevel10k.zsh-theme"; |
diff --git a/user-profiles/zsh/zshrc b/user-profiles/zsh/zshrc index a83a8069..7d0c1a16 100644 --- a/user-profiles/zsh/zshrc +++ b/user-profiles/zsh/zshrc | |||
@@ -27,4 +27,6 @@ bindkey ';5D' emacs-backward-word | |||
27 | 27 | ||
28 | autoload -Uz url-quote-magic bracketed-paste-magic | 28 | autoload -Uz url-quote-magic bracketed-paste-magic |
29 | zle -N self-insert url-quote-magic | 29 | zle -N self-insert url-quote-magic |
30 | zle -N bracketed-paste bracketed-paste-magic \ No newline at end of file | 30 | zle -N bracketed-paste bracketed-paste-magic |
31 | |||
32 | setopt extended_glob | ||