Commit Graph

775 Commits

Author SHA1 Message Date
rogarb
f5363e768c
oh-my-zsh: 2023-04-21 -> 2023-05-23 2023-05-23 17:04:05 +02:00
R. Ryantm
6656ad785f spaceship-prompt: 4.13.3 -> 4.14.0 2023-05-20 04:03:29 +00:00
Rick van Schijndel
67486d98ab
Merge pull request #230011 from spwhitt/remove-spwhitt
Remove myself as maintainer
2023-05-06 16:38:40 +02:00
R. Ryantm
6dfe6cbf6b zsh-autocomplete: 22.01.21 -> 23.05.02 2023-05-05 15:36:44 +00:00
Spencer Whitt
21dbdb5d03 maintainers: remove spwhitt 2023-05-05 12:34:05 +00:00
R. Ryantm
50b86d1a3e zsh-forgit: 23.04.0 -> 23.05.0 2023-05-05 05:12:08 +00:00
Martin Weinelt
fb36a1da56 zsh-powerlevel10k: 1.17.0 -> 1.18.0
Diff: https://github.com/romkatv/powerlevel10k/compare/refs/tags/v1.17.0...v1.18.0

Changelog: https://github.com/romkatv/powerlevel10k/releases/tag/v1.18.0
2023-05-04 20:56:53 +02:00
Weijia Wang
8e59cf618f
Merge pull request #228455 from r-ryantm/auto-update/zsh-forgit
zsh-forgit: 23.03.0 -> 23.04.0
2023-04-27 14:10:51 +03:00
Sinkerine
fbd67ea6c1
zplug: update the output path (#228284)
* zplug: update the output path

This is a breaking change because the old behavior pollutes the nix profile root
dir with all files in https://github.com/zplug/zplug and needs to be fixed.

I created a corresponding PR in the home manager repo
https://github.com/nix-community/home-manager/pull/3922. For non HM users, they
will need to update their dependency on `${pkgs.zplug}/init.zsh` to `${pkgs.zplug}/share/zplug/init.zsh`.

* Only add necessary files to $out/share/zplug. Also add the zplug man pages

The LICENSE file is not in the 2.4.2 tag and there's not a release after that. I
would skip adding the license $out/licenses/zplug in this commit.

Reference: https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=zplug
2023-04-27 10:13:15 +02:00
R. Ryantm
eb4c0dca76 zsh-forgit: 23.03.0 -> 23.04.0 2023-04-27 05:01:18 +00:00
R. Ryantm
6db9de6dbf zsh-nix-shell: 0.5.0 -> 0.6.0 2023-04-26 02:22:27 +00:00
Nick Cao
2a3797a3d5
Merge pull request #227430 from Vonfry/update/fzf-tab
zsh-fzf-tab: unstable-2022-12-08 -> unstable-2023-05-19
2023-04-22 11:34:42 +08:00
Vonfry
888717888d
zsh-fzf-tab: unstable-2022-12-08 -> unstable-2023-05-19 2023-04-22 11:03:24 +08:00
R. Ryantm
9db6b0179f oh-my-zsh: 2023-03-28 -> 2023-04-21 2023-04-21 12:40:16 +00:00
R. Ryantm
6c3527d03f zsh-prezto: unstable-2023-01-31 -> unstable-2023-04-13 2023-04-20 02:41:17 +00:00
R. Ryantm
68f3f0d535 oh-my-zsh: 2023-03-12 -> 2023-03-28 2023-03-29 17:09:38 +00:00
Lin Jian
43f45fe24f
zsh: fix the guard variable for /etc/set-environment
This guard variable is written to $out/etc/zshenv using
here-documents, so we need to escape it.
2023-03-29 13:51:26 +08:00
K900
382c756097
Merge pull request #217205 from linj-fork/fix-zsh-set-env
zsh: set environment variables in zshenv instead of zprofile
2023-03-23 18:57:40 +03:00
Weijia Wang
0ddb1461ee
Merge pull request #207395 from r-ryantm/auto-update/grml-zsh-config
grml-zsh-config: 0.19.4 -> 0.19.5
2023-03-17 12:29:27 +02:00
Weijia Wang
1df7332c72
Merge pull request #221161 from r-ryantm/auto-update/oh-my-zsh
oh-my-zsh: 2023-03-06 -> 2023-03-12
2023-03-15 22:30:19 +02:00
R. Ryantm
1dc043677c spaceship-prompt: 4.13.2 -> 4.13.3 2023-03-15 04:15:03 +00:00
R. Ryantm
b19b513a93 oh-my-zsh: 2023-03-06 -> 2023-03-12 2023-03-14 12:13:53 +00:00
Lin Jian
8e2e741ab5
zsh: set environment variables in zshenv instead of zprofile
This patch fixes two issues:

1. The file in which environment variables are set is inconsistent.
  - This file sets them in zprofile when programs.zsh.enable is not
  set.
  - Zsh module sets them in zshenv when programs.zsh.enable is set.

2. Setting environment variables in zprofile overrides what users set
in .zshenv.  See these[1] home-manager[2] issues[3].

/etc/profile is also changed to /etc/set-environment. Here is a
comparison:

Using /etc/profile:
- Pros
  - config.environment.shellInit is sourced in all zsh
- Cons
  - config.environment.loginShellInit is also sourced in non-login zsh
  - config.programs.bash.shellInit is also sourced in all zsh
  - config.programs.bash.loginShellInit is also sourced in all zsh

Using /etc/set-environment:
- Pros
  - config.programs.bash.shellInit is not sourced in any zsh
  - config.programs.bash.loginShellInit is not sourced in any zsh
- Cons
  - config.environment.shellInit is not sourced in any zsh
  - config.environment.loginShellInit is not sourced in any zsh

[1]: https://github.com/nix-community/home-manager/issues/2751#issuecomment-1048682643
[2]: https://github.com/nix-community/home-manager/issues/2991
[3]: https://github.com/nix-community/home-manager/issues/3681#issuecomment-1436054233
2023-03-13 17:25:04 +08:00
R. Ryantm
68852fbe7c oh-my-zsh: 2023-03-04 -> 2023-03-06 2023-03-07 03:56:25 +00:00
R. Ryantm
f7bc732830 oh-my-zsh: 2023-03-01 -> 2023-03-04 2023-03-05 11:36:52 +00:00
Weijia Wang
d24cb3711e
Merge pull request #219224 from r-ryantm/auto-update/spaceship-prompt
spaceship-prompt: 4.13.1 -> 4.13.2
2023-03-03 22:04:51 +02:00
Weijia Wang
cc3cddc25f
Merge pull request #219278 from r-ryantm/auto-update/zsh-forgit
zsh-forgit: 23.02.0 -> 23.03.0
2023-03-03 21:47:48 +02:00
Mario Rodas
39a9b1897e
Merge pull request #219113 from r-ryantm/auto-update/oh-my-zsh
oh-my-zsh: 2023-02-23 -> 2023-03-01
2023-03-03 06:32:29 -05:00
R. Ryantm
3937eb869a zsh-forgit: 23.02.0 -> 23.03.0 2023-03-03 00:50:48 +00:00
R. Ryantm
e367ea697b spaceship-prompt: 4.13.1 -> 4.13.2 2023-03-02 20:00:12 +00:00
R. Ryantm
68fe9c3e3d oh-my-zsh: 2023-02-23 -> 2023-03-01 2023-03-02 04:22:05 +00:00
R. Ryantm
5c16cfc824 zimfw: 1.11.2 -> 1.11.3 2023-03-02 01:36:07 +00:00
Weijia Wang
ae27e61481
Merge pull request #211753 from r-ryantm/auto-update/zsh-prezto
zsh-prezto: unstable-2023-01-12 -> unstable-2023-01-31
2023-02-26 01:01:40 +02:00
R. Ryantm
19d6a0cecb oh-my-zsh: 2023-02-16 -> 2023-02-23 2023-02-24 13:38:31 +00:00
Joe DeVivo
b348e7ef9f
zimfw: fix generated init.zsh to use $out 2023-02-23 09:59:14 -07:00
R. Ryantm
f8d68cd3fd zimfw: 1.11.1 -> 1.11.2 2023-02-21 04:11:33 +00:00
R. Ryantm
68329697a6 oh-my-zsh: 2023-02-05 -> 2023-02-16 2023-02-16 12:56:07 +00:00
R. Ryantm
fc334fd76c zsh-prezto: unstable-2023-01-12 -> unstable-2023-01-31 2023-02-09 11:47:24 +00:00
R. Ryantm
7ce6fb77e8 zimfw: 1.11.0 -> 1.11.1 2023-02-07 13:12:19 +00:00
R. Ryantm
d37ecf3523 oh-my-zsh: 2023-02-02 -> 2023-02-05 2023-02-06 08:12:43 +00:00
R. Ryantm
58ac9e054e zsh-forgit: 23.01.0 -> 23.02.0 2023-02-04 09:28:47 +00:00
Fugi
8236410735
agdsn-zsh-config: init at 0.6.0 2023-02-03 02:19:15 +01:00
R. Ryantm
b653c21cd1 oh-my-zsh: 2023-01-26 -> 2023-02-02 2023-02-02 22:19:35 +00:00
zowoq
978eeec74c nix-zsh-completions: 0.4.4 -> unstable-2023-01-30
upstream has removed nix command completion

https://github.com/nix-community/nix-zsh-completions/compare/0.4.4...6a1bfc024481bdba568f2ced65e02f3a359a7692
2023-01-31 08:24:01 +10:00
Weijia Wang
84eed3e542
Merge pull request #212764 from r-ryantm/auto-update/oh-my-zsh
oh-my-zsh: 2023-01-17 -> 2023-01-26
2023-01-30 03:47:22 +01:00
Martin Weinelt
44533f5954
zsh-powerlevel10k: 1.16.1 -> 1.17.0
https://github.com/romkatv/powerlevel10k/releases/tag/v1.17.0
https://github.com/romkatv/gitstatus/releases/tag/v1.5.4
2023-01-28 20:32:39 +01:00
R. Ryantm
607af43f1b oh-my-zsh: 2023-01-17 -> 2023-01-26 2023-01-27 08:46:36 +00:00
Silvan Mosberger
ebc0798e95 zsh-clipboard: Make independent of Nix file
This way, changing the Nix file won't change the derivation
2023-01-25 16:12:43 +01:00
Weijia Wang
3af326d047
Merge pull request #209653 from r-ryantm/auto-update/pure-prompt
pure-prompt: 1.20.4 -> 1.21.0
2023-01-23 16:57:35 +01:00
R. Ryantm
ec2ccd96fb oh-my-zsh: 2023-01-09 -> 2023-01-17 2023-01-17 13:27:26 +00:00
Jörg Thalheim
42cbbdd326
Merge pull request #210670 from r-ryantm/auto-update/zsh-prezto
zsh-prezto: unstable-2022-10-26 -> unstable-2023-01-12
2023-01-16 01:30:37 +01:00
Vonfry
1ef83f9b11
zsh-fzf-tab: unstable-2022-10-15 -> unstable-2022-12-08 2023-01-15 16:00:54 +08:00
R. Ryantm
c11069da37 zsh-prezto: unstable-2022-10-26 -> unstable-2023-01-12 2023-01-14 10:03:30 +00:00
figsoda
ce7916401d
Merge pull request #210370 from r-ryantm/auto-update/spaceship-prompt
spaceship-prompt: 4.12.0 -> 4.13.1
2023-01-12 13:08:04 -05:00
Naïm Favier
16941b18c2
Merge pull request #208919 from joedevivo/zimfw 2023-01-12 16:10:24 +01:00
R. Ryantm
f767028160 spaceship-prompt: 4.12.0 -> 4.13.1 2023-01-12 14:53:34 +00:00
R. RyanTM
b53f7b3cfe
oh-my-zsh: 2022-11-08 -> 2023-01-09 (#210105) 2023-01-11 16:38:01 -05:00
Joe DeVivo
288a8815e0
zimfw: init at 1.11.0 2023-01-11 07:40:11 -07:00
Sandro
79562c9aa1
Merge pull request #209307 from deejayem/zsh-forgit-23.01.0 2023-01-10 13:20:00 +01:00
R. Ryantm
adcf91124c zsh-prezto: unstable-2022-04-05 -> unstable-2022-10-26 2023-01-08 18:08:11 +08:00
R. Ryantm
cf74134f1d pure-prompt: 1.20.4 -> 1.21.0 2023-01-08 09:25:51 +00:00
David Morgan
6d3d0c1ffc
zsh-forgit: 22.12.0 -> 23.01.0 2023-01-06 13:19:34 +00:00
figsoda
293a28df6d
Merge pull request #208388 from KyleOndy/add-kyleondy-to-spaceship-maintainers
spaceship-prompt: add kyleondy as maintainer
2022-12-30 14:23:29 -05:00
figsoda
b4d8bdee40
Merge pull request #206917 from KyleOndy/fix-spaceship
spaceship-prompt: 3.16.7 -> 4.12.0
2022-12-30 14:20:13 -05:00
Kyle Ondy
3a7244f68b
spaceship-prompt: add kyleondy as maintainer
Kyle Ondy uses spaceship-prompt 10+ hours a day, both at work on an M1
macbook and on Intel and AMD machines at home.
2022-12-30 12:45:41 -05:00
R. Ryantm
1659f599a3 grml-zsh-config: 0.19.4 -> 0.19.5 2022-12-23 08:07:34 +00:00
Kyle Ondy
0f28dc189a
spaceship-promt: add async.zsh to package
https://gist.github.com/gabrielmldantas/66f0c738a3f248fbf6b7f672bdfef671
via
https://github.com/spaceship-prompt/spaceship-prompt/issues/1255#issuecomment-1346276093
2022-12-19 16:10:18 -05:00
Sandro
63d3f0fd5d
Merge pull request #205148 from deejayem/zsh-forgit-22.12.0 2022-12-13 17:08:40 +01:00
David Morgan
d7c4e4ff63
zsh-forgit: 22.11.0 -> 22.12.0 2022-12-12 12:04:26 +00:00
R. Ryantm
95e84d99a1 spaceship-prompt: 3.16.7 -> 4.12.0 2022-12-11 06:15:52 +00:00
Artturin
c55b931644 treewide: fix lints and remove a unneeded cmake input 2022-12-09 01:16:08 +02:00
Sandro
9a3668379e
Merge pull request #203920 from deejayem/add-zsh-edit 2022-12-03 05:53:24 +01:00
figsoda
cf61d1df81
Merge pull request #204177 from thiagokokada/zsh-git-prompt
zsh-git-prompt: python2 -> python3
2022-12-02 16:39:03 -05:00
Thiago Kenji Okada
d4a769b6dc zsh-git-prompt: python2 -> python3 2022-12-02 21:04:33 +00:00
Jörg Thalheim
0114278a9a zsh: fix modules when cross-compiling 2022-12-02 19:46:48 +01:00
David Morgan
ba9d6825bd
zsh-edit: init at unstable-2022-05-05 2022-12-01 12:28:41 +00:00
Robert Hensing
f79febbc8c
Merge pull request #202750 from wentasah/nix-zsh-completions-fix
nix-zsh-completions: remove broken _nix completion function
2022-11-29 21:40:37 +00:00
Michal Sojka
c35e1f6c26 nix-zsh-completions: remove broken _nix completion function
That completion function works only with nix 2.3 (and older). The
newer versions use ANSI escape sequences in the --help output, and
this seems to confuse the function.

Nix 2.4+ has zsh completion built in so removing it from
nix-zsh-completions should not harm most users.
2022-11-25 00:34:57 +01:00
David Morgan
b40da0c8f5
zsh-forgit: init at 22.11.0 2022-11-24 21:33:57 +00:00
R. Ryantm
0a026eb33c zsh-vi-mode: 0.8.5 -> 0.9.0 2022-11-13 11:04:40 +08:00
R. Ryantm
c4ba130a43 oh-my-zsh: 2022-11-07 -> 2022-11-08 2022-11-08 18:33:52 +00:00
R. Ryantm
caed6c004d oh-my-zsh: 2022-11-06 -> 2022-11-07 2022-11-07 16:13:40 +00:00
R. Ryantm
6068b8549d oh-my-zsh: 2022-11-04 -> 2022-11-06 2022-11-06 20:44:10 +00:00
R. Ryantm
514072bd07 oh-my-zsh: 2022-11-03 -> 2022-11-04 2022-11-05 08:43:46 +00:00
R. Ryantm
8af05d2083 oh-my-zsh: 2022-10-30 -> 2022-11-03 2022-11-04 10:37:54 +00:00
R. Ryantm
3b06cec152 oh-my-zsh: 2022-10-25 -> 2022-10-30 2022-10-31 17:14:34 +00:00
R. Ryantm
e0afb10f18 oh-my-zsh: 2022-10-24 -> 2022-10-25 2022-10-26 11:32:54 +00:00
R. Ryantm
3d8c5c1474 oh-my-zsh: 2022-10-22 -> 2022-10-24 2022-10-24 18:17:17 +00:00
Mario Rodas
79b2364c02
Merge pull request #197349 from r-ryantm/auto-update/oh-my-zsh
oh-my-zsh: 2022-10-19 -> 2022-10-22
2022-10-23 10:06:07 -05:00
R. Ryantm
401ee47eb2 oh-my-zsh: 2022-10-19 -> 2022-10-22 2022-10-23 09:39:25 +00:00
Vonfry
aaf5ba0b40
zsh-fzf-tab: unstable-2022-08-11 -> unstable-2022-10-15 2022-10-23 14:20:47 +08:00
R. RyanTM
179706319f
oh-my-zsh: 2022-10-14 -> 2022-10-19 (#196736) 2022-10-19 10:25:11 -04:00
Mario Rodas
e38af80e90
Merge pull request #195883 from r-ryantm/auto-update/grml-zsh-config
grml-zsh-config: 0.19.3 -> 0.19.4
2022-10-14 21:33:28 -05:00
R. Ryantm
20c97dbdce oh-my-zsh: 2022-10-12 -> 2022-10-14 2022-10-15 01:29:40 +00:00
R. Ryantm
d0f88f3e60 grml-zsh-config: 0.19.3 -> 0.19.4 2022-10-14 01:19:08 +00:00
Tim Steinbach
9673ea736a
oh-my-zsh: 2022-10-07 → 2022-10-12 (#195666) 2022-10-12 09:49:10 -04:00
Bobby Rong
68812fec55
Merge pull request #194553 from tjni/antibody-darwin-broken
antibody: mark broken on darwin
2022-10-10 22:46:18 +08:00
R. Ryantm
0dcd2a7ace oh-my-zsh: 2022-10-03 -> 2022-10-07 2022-10-07 13:55:21 +00:00
Theodore Ni
32e91ab1de
antibody: mark broken on darwin 2022-10-05 00:29:01 -07:00
R. Ryantm
07400e6c09 oh-my-zsh: 2022-09-10 -> 2022-10-03 2022-10-03 14:59:23 +00:00