Differences between revisions 1 and 10 (spanning 9 versions)
Revision 1 as of 2009-06-12 07:33:05
Size: 32
Editor: SamatJain
Comment:
Revision 10 as of 2015-12-28 03:59:46
Size: 1335
Editor: SamatJain
Comment:
Deletions are marked like this. Additions are marked like this.
Line 4: Line 4:

 * [[http://stuff.mit.edu/~jdong/misc/zshrc|FriedCPU's zshrc (based on one by Mako)]], from [[http://friedcpu.wordpress.com/2007/07/24/zsh-the-last-shell-youll-ever-need/|his blog]]
 * [[http://dotfiles.org/~_why/.zshrc|why the lucky stiff's zshrc]]
 * [[http://git.grml.org/f/grml-etc-core/etc/zsh/zshrc|grml's zshrc]] from [[http://grml.org/zsh/|grml's zsh page]]
 * [[http://pthree.org/2008/11/23/727/|Aaron Toponce's zsh prompt]]
 * [[http://www.sourceguru.net/archives/188|Fixing zsh window titles]]

 * [[http://grml.org/zsh/|grml's zsh resources]]

 * [[http://fendrich.se/blog/2012/09/28/no/|No, really. Use Zsh. - IFHO]]: On using oh-my-zsh, etc
 * [[http://blog.andrewhays.net/love-your-terminal|Love Your Terminal]]: On making a better terminal. Discussion on git prompts, better shell history tracking, etc

== Configuration starting points ==

 * [[https://github.com/sorin-ionescu/prezto|Prezto]] — fork of oh-my-zsh, supposed to be more modular and faster?

== Speeding up git completion ==

{{{#!highlight sh
__git_files () {
    _wanted files expl ‘local files’ _files
}
}}}

from [[http://talkings.org/post/5236392664/zsh-and-slow-git-completion|Zsh and slow git completion]]

== Debian packages ==

zsh-antigen
zsh-lovers
zsh-syntax-highlighting

vi-mode editing:

bindkey -v

Configuration starting points

  • Prezto — fork of oh-my-zsh, supposed to be more modular and faster?

Speeding up git completion

   1 __git_files () {
   2     _wanted files expl ‘local files’ _files
   3 }

from Zsh and slow git completion

Debian packages

zsh-antigen zsh-lovers zsh-syntax-highlighting

SamatsWiki: Zsh (last edited 2020-06-10 01:30:41 by SamatJain)