Comment on What helps people get comfortable on the command line?
atheken@programming.dev 1 year agoI’ve had ohmyzsh installed for years. TBH, I still don’t know what it gives me over bash. In your experience, what is the “killer feature” of zsh?
fhoekstra@programming.dev 1 year ago
Not OP, but I very recently switchedfrom bash. Autocomplete with suggestions is a way better exeperience on zsh than bash. The way you can choose between options of the autocomplete/suggest interactively feels way better than bash. I set it up to be case-insensitive, so I can type
cd dow
and it will becomecd Downloads
. Gettig autocomplete for bothkubectl
and its aliask
is seamless in zshrc but requires an extra line with a weird dunder function in bashrc.This is just what I found in a few days of using it. There was no learning curve at all, everything just felt easier.