I always find it interesting what people put in their programming environments. After reading the same basic question for .vimrc and .bashrc, I have to ask for my favorite shell. So what's in yours?
closed as not constructive by random, jv42, Neolisk, Radu Murzea, Beerlington Jan 19 at 21:18
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
Here's mine...
|
|||||||||||||||||||
|
|
Alt-S inserts "sudo " at the start of line:
Rename session when I ssh anywhere:
|
|||||
|
|
Here is something that I added recently and that I couldn't live without anymore:
This is a hook function that is called whenever you |
|||||||||||||||
|
|
Heh, where do I begin? Useful keybindings
Basic aliases
Making GNU fileutils more verbose
On slow infrastructure where tab-completion takes a while? Show "waiting dots" while something tab-completes. (found on
Fix all terminal bugs, ever. I use modern terminals everywhere nowadays. This just works.
|
|||
|
|
|
I like my alias to find sorted list of biggest files under current directory:
It's a little rough, but works perfect. I also like bindkey for Ctrl-J, to make multi line editing easy (an exception for Midnight Commander is needed):
Another thing I have, although pretty useless, it's a function to draw mandelbrot fractal:
It's a good presentation of ZSH capabilities, e.g. floating point numbers support.
|
||||
|
|
|
I'm keeping mine in a repository on GitHub. It's a fork of zshkit, which is a cool way of storing your customisations. I'm particularly fond of my new prompt, which is really minimal, but packs in plenty of useful info. The
|
|||||
|
|
Here's another ZSH snippet I'm very proud of because of the great readability. ;)
Set |
|||
|
|
|
This is my setup for GNU Screen support in ZSH. Don't know where I found it, but it's pretty sweet to have speaking titles in your screen windows if you have lots of them.
|
|||
|
|
|
In mine, I have:
(This adds remote hostnames for 'ssh' and other network commands to the autocomplete suggestions, based on the contents of your ~/.ssh/known_hosts lists.) |
|||
|
|
|
I often build elaborate commands step by step: I run a command, see I need a different option, then use the output of the same command within
|
|||
|
|
|
I have a dirty awk in my [z|k]shrc. I used to keep a big .func file with many functions for sourcing until some days I realize it is super slow and I need to use autoload to get them into memory, not simple source. A peek in the .func file:
So in .zshrc:
All functions are POSIX Stytle. Recently I'm considering using more graceful ksh function () style. |
|||
|
|

