Commit Graph

427 Commits

Author SHA1 Message Date
Tim Steinbach
a59e171286 oh-my-zsh: 2021-02-09 → 2021-02-21 2021-02-22 10:07:14 -05:00
qq
5f6dd10662 zsh-system-clipboard: init at 0.7.0 2021-02-11 20:01:06 +03:00
Sandro
64a33ee8ca
Merge pull request #112661 from 0qq/init/zsh-autopair 2021-02-11 01:39:41 +01:00
qq
d3790990b8 zsh-autopair: init at 1.0 2021-02-10 19:04:09 +03:00
Tim Steinbach
f72648de31
oh-my-zsh: 2021-01-31 → 2021-02-09 2021-02-10 10:20:19 -05:00
Nick Hu
f34aeeab8c
zsh-prezto: make zshrc aware of where zsh-prezto is installed (#112448)
Without this, the bundled zshrc runcom is useless as it assumes that
zsh-prezto is installed in $ZDOTDIR:-$HOME/.zprezto, so it can't find
its entrypoint. Crucially, the home-manager zsh-prezto module uses this
runcom so is broken without this also.
2021-02-09 02:16:04 +00:00
Sandro
93498b1526
Merge pull request #111295 from pasqui23/zinit 2021-02-08 10:15:10 +01:00
Pasquale
a98090337f zinit: 2.3 -> 3.7 2021-02-02 15:25:02 +01:00
Tim Steinbach
b55eb99778
oh-my-zsh: 2021-01-27 → 2021-01-31 2021-02-01 15:22:16 -05:00
Mario Rodas
0f73c7e25a
Merge pull request #111241 from r-ryantm/auto-update/grml-zsh-config
grml-zsh-config: 0.17.4 -> 0.18.0
2021-01-30 15:22:38 -05:00
R. RyanTM
6d6af7e492 grml-zsh-config: 0.17.4 -> 0.18.0 2021-01-30 02:20:09 +00:00
Monson Shao
d5b4c4fdac
zsh-prezto: install to right place 2021-01-30 02:25:59 +08:00
Tim Steinbach
25af703d2d
oh-my-zsh: 2021-01-20 → 2021-01-27 2021-01-27 18:14:29 -05:00
Pavol Rusnak
a6ce00c50c
treewide: remove stdenv where not needed 2021-01-25 18:31:47 +01:00
Vonfry
057017ee86
zsh-fzf-tab: init at 2021-01-24 (#110694)
* zsh-fzf-tab: init at 2021-01-24

* Update pkgs/shells/zsh/zsh-fzf-tab/default.nix

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2021-01-25 01:17:21 +01:00
Mario Rodas
35be8e34fe
Merge pull request #110535 from r-ryantm/auto-update/pure-prompt
pure-prompt: 1.15.0 -> 1.16.0
2021-01-24 11:01:56 -05:00
Monson Shao
99b3d904e7
maintainers: add holymonson 2021-01-24 21:33:11 +08:00
Monson Shao
6f94d834a1
zsh-prezto: update to unstable 2021-01-24 21:32:01 +08:00
R. RyanTM
84733f9589 pure-prompt: 1.15.0 -> 1.16.0 2021-01-22 20:10:26 +00:00
Tim Steinbach
c6a31be155
oh-my-zsh: 2021-01-16 → 2021-01-20 2021-01-20 12:36:55 -05:00
Martin Weinelt
3144b2ee18
zsh-powerlevel10k: 1.14.4 -> 1.14.6 2021-01-19 20:33:49 +01:00
Christian Kampka
f0ec10a829
treewide: remove kampka as maintainer (#109813) 2021-01-18 21:23:49 +01:00
Tim Steinbach
78dc8bf5c8
oh-my-zsh: 2021-01-14 → 2021-01-16 2021-01-18 10:42:42 -05:00
Tim Steinbach
3d39348aac
oh-my-zsh: 2021-01-07 → 2021-01-14 2021-01-15 10:39:10 -05:00
Ben Siraphob
e245ae3c3a pkgs/shells: stdenv.lib -> lib 2021-01-15 14:24:03 +07:00
Alyssa Ross
3893d6c6d7 gitAndTools: move everything to the top level
The comment at the top of git-and-tools/default.nix said:

    /* All git-relates tools live here, in a separate attribute set so that users
     * can get a fast overview over what's available.

but unfortunately that hasn't actually held up in practice.

Git-related packages have continued to be added to the top level, or
into gitAndTools, or sometimes both, basically at random, so having
gitAndTools is just confusing.  In fact, until I looked as part of
working on getting rid of gitAndTools, one program (ydiff) was
packaged twice independently, once in gitAndTools and once at the top
level (I fixed this in 98c34901969).

So I think it's for the best if we move away from gitAndTools, and
just put all the packages it previously contained at the top level.
I've implemented this here by just making gitAndTools an alias for the
top level -- this saves having loads of lines in aliases.nix.  This
means that people can keep referring to gitAndTools in their
configuration, but it won't be allowed to be used within Nixpkgs, and
it won't be presented to new users by e.g. nix search.

The only other change here that I'm aware of is that
appendToName "minimal" is not longer called on the default git
package, because doing that would have necessitated having a private
gitBase variable like before.  I think it makes more sense not to do
that anyway, and reserve the "minimal" suffix only for gitMinimal.
2021-01-14 21:27:48 +00:00
Profpatsch
4a7f99d55d treewide: with stdenv.lib; in meta -> with lib;
Part of: https://github.com/NixOS/nixpkgs/issues/108938

meta = with stdenv.lib;

is a widely used pattern. We want to slowly remove
the `stdenv.lib` indirection and encourage people
to use `lib` directly. Thus let’s start with the meta
field.

This used a rewriting script to mostly automatically
replace all occurances of this pattern, and add the
`lib` argument to the package header if it doesn’t
exist yet.

The script in its current form is available at
https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
2021-01-11 10:38:22 +01:00
Tim Steinbach
f621108dbc
oh-my-zsh: 2021-01-05 → 2021-01-07 2021-01-08 14:03:10 +00:00
Tim Steinbach
c034059bca
oh-my-zsh: 2021-01-04 → 2021-01-05 2021-01-06 14:28:39 -05:00
Tim Steinbach
02262c67ce
oh-my-zsh: 2021-01-02 → 2021-01-04 2021-01-05 10:30:29 -05:00
Doron Behar
cf0e54722d
Merge pull request #105301 from antifuchs/zsh-purity
zsh: Disable compiling in /usr/local/... as the site-function directory
2021-01-04 10:04:18 +02:00
Tim Steinbach
88d2028549
oh-my-zsh: 2021-01-01 → 2021-01-02 2021-01-02 21:00:00 -05:00
Tim Steinbach
952b3f9651
oh-my-zsh: 2020-12-31 → 2021-01-01 2021-01-01 16:52:09 -05:00
Tim Steinbach
d1adfb65f2
oh-my-zsh: 2020-12-30 → 2020-12-31 2020-12-31 11:57:33 -05:00
Tim Steinbach
f62c0b45f1
oh-my-zsh: 2020-12-28 → 2020-12-30 2020-12-30 21:19:14 -05:00
Tim Steinbach
e9d8aaa945
oh-my-zsh: 2020-12-27 → 2020-12-28 2020-12-29 10:11:57 -05:00
Tim Steinbach
9e88afeb10
oh-my-zsh: 2020-12-16 → 2020-12-27 2020-12-28 10:48:00 -05:00
Martin Weinelt
e44a5aacee
zsh-powerlevel10k: 0.14.3 -> 0.14.4 2020-12-18 18:13:01 +01:00
Tim Steinbach
528cdd3ec5
oh-my-zsh: 2020-12-14 → 2020-12-16 2020-12-17 09:02:46 -05:00
Tim Steinbach
198003cb9f
oh-my-zsh: 2020-11-26 → 2020-12-14 2020-12-16 10:43:38 -05:00
Andreas Fuchs
58fa36d30c zsh: Disable compiling in /usr/local/... as the site fndir
With the default configure flags, zsh compiles in a reference to the
"site function" directory that's outside the store path. Under the
right (wrong) circumstances, other builds using zsh can be affected by
these functions.
2020-11-28 19:04:06 -05:00
Tim Steinbach
eb2a3a040c
oh-my-zsh: 2020-11-25 → 2020-11-26 2020-11-28 12:43:17 -05:00
Martin Weinelt
63a60bf31a
zsh-powerlevel10k: 1.13.0 -> 1.14.3
Update gitstatus pin 1.2.0 -> 1.3.1.

https://github.com/romkatv/powerlevel10k/releases/tag/v1.14.0
https://github.com/romkatv/powerlevel10k/releases/tag/v1.14.1
https://github.com/romkatv/powerlevel10k/releases/tag/v1.14.2
https://github.com/romkatv/powerlevel10k/releases/tag/v1.14.3
2020-11-26 11:54:46 +01:00
Tim Steinbach
2e3c491a00
oh-my-zsh: 2020-11-22 → 2020-11-25 2020-11-25 19:22:07 +00:00
Tim Steinbach
e0e4c2281c
oh-my-zsh: 2020-11-20 → 2020-11-22 2020-11-23 10:55:11 -05:00
Tim Steinbach
a57bf2dc18
oh-my-zsh: 2020-11-12 → 2020-11-20 2020-11-20 16:27:42 +00:00
Oleksii Filonenko
512c3c0a05 maintainers: rename filalex77 -> Br1ght0ne 2020-11-17 13:09:31 +02:00
Tim Steinbach
7a36556e64
oh-my-zsh: 2020-11-11 → 2020-11-12 2020-11-13 09:28:18 -05:00
Mario Rodas
2738176ecd
Merge pull request #103509 from r-ryantm/auto-update/pure-prompt
pure-prompt: 1.13.0 -> 1.15.0
2020-11-11 21:29:52 -05:00
R. RyanTM
7e0dc8e35e pure-prompt: 1.13.0 -> 1.15.0 2020-11-11 22:33:12 +00:00