Dotfiles
Hello here.
As a first post, I wish to initiate some kind of melting pot for our dotfiles configuration files.
I mean that we can share together the configuration of our common applications, and find the magic tip we never know, or simply discover new tools through the neighbor files.
I begin for now with the three well known Zsh, Vim and Mutt. You can browse my dotfiles configuration files here.
More configurations will income soon. But I need to extract it, make it presentable and remove personal informations from it.
Feel free to comment!
Welcome, Iekko :) I’m looking forward to more configs of yours!
I’ve been thinking about testing zsh for a long time now. Any neat tricks for an old bashism advocate?
Welcome, iekko! And thanks for this nice idea. Lets try to hax my vim a bit now! :D
I use zsh only as an interactive shell. I stick to /bin/sh for scripts, and try to keep it POSIX or, at least GNU compatible.
The first feature I use the most is the completion for everything :
The second one is the file globbing :
I just set up my zsh hosts completion, so that it can browse all records from the default DNS zone.
The line to put in the zshrc :
zstyle ':completion:*' hosts $(perl -MNet::DNS -e 'print $_, "\n" foreach sort grep !$ok{$_}++, map { $_->name } Net::DNS::Resolver->new()->axfr')