about summary refs log tree commit diff
path: root/pkgs/shells
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2020-04-27 12:29:05 +0200
committerMartin Weinelt <hexa@darmstadt.ccc.de>2020-04-27 12:37:17 +0200
commitc17800c081b84b5e350a74b9f59b121ecee7863d (patch)
tree9a1d13f8953f2a8e2ba84f64f3eff74004a8e1c5 /pkgs/shells
parente92b11d964d13991f5d62b3affec04c4fb03f110 (diff)
downloadnixlib-c17800c081b84b5e350a74b9f59b121ecee7863d.tar
nixlib-c17800c081b84b5e350a74b9f59b121ecee7863d.tar.gz
nixlib-c17800c081b84b5e350a74b9f59b121ecee7863d.tar.bz2
nixlib-c17800c081b84b5e350a74b9f59b121ecee7863d.tar.lz
nixlib-c17800c081b84b5e350a74b9f59b121ecee7863d.tar.xz
nixlib-c17800c081b84b5e350a74b9f59b121ecee7863d.tar.zst
nixlib-c17800c081b84b5e350a74b9f59b121ecee7863d.zip
zsh-powerlevel10k: v1.5.0 → v1.6.0
Changes since the last release

    Wizard
        Configuration wizard now reacts to terminal size changes in real time and can function at much smaller terminal dimensions.
        Configs with prompt_char now have vi_mode disabled by default.
        Generated configs now unset DEFAULT_USER.
        Classic and Rainbow configs now set POWERLEVEL9K_MULTILINE_NEWLINE_PROMPT_GAP_BACKGROUND. This makes it easier to define 3-line prompt.

    New parameters
        If POWERLEVEL9K_CONFIG_FILE is set, configuration wizard will write configs to the specified location instead of the default ${ZDOTDIR:-~}/.p10k.zsh.

    gitstatus
        Support older macOS versions (at least El Capitan; even older versions might work).
        Support Linux on armv6, i386 and i686.
        Support cygwin and msys2 on i686.
        macOS builds now use iconv from Homebrew.
        gitstatusd binaries are now being built with https://github.com/romkatv/gitstatus/blob/release/mbuild.

    Misc
        The default icon for proxy segment is now ↔ instead of ⮂. The old icon is missing in many fonts.

    Bug fixes
        gitstatus once again works on 64-bit Linux without glibc.
        Instant prompt no longer gets gradually slower over time when XDG_HOME_CACHE is on a slow filesystem.
        Instant prompt no longer prints spurious erros when XDG_HOME_CACHE is on NTFS.
        The old-style (and discouraged) custom prompts now work on zsh 5.3.1.
        Configuration wizard once again presents "extra icons" and "fluent prompt" options when using 12-hour time format.
Diffstat (limited to 'pkgs/shells')
-rw-r--r--pkgs/shells/zsh/zsh-powerlevel10k/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/shells/zsh/zsh-powerlevel10k/default.nix b/pkgs/shells/zsh/zsh-powerlevel10k/default.nix
index 7fac0fb8ab8a..3b117d4a1ab8 100644
--- a/pkgs/shells/zsh/zsh-powerlevel10k/default.nix
+++ b/pkgs/shells/zsh/zsh-powerlevel10k/default.nix
@@ -5,13 +5,13 @@
 
 stdenv.mkDerivation rec {
   pname = "powerlevel10k";
-  version = "1.5.0";
+  version = "1.6.0";
 
   src = fetchFromGitHub {
     owner = "romkatv";
     repo = "powerlevel10k";
     rev = "v${version}";
-    sha256 = "0r8vccgfy85ryswaigzgwmvhvrhlap7nrg7bi66w63877znqlksj";
+    sha256 = "1v6lwjlc4qrxfv1yjy31xh59ayf7jprm3y87l75d08pzj1v4lsj5";
   };
 
   patches = [