Last active
June 15, 2025 16:55
-
-
Save aayars/36548030dfc297f2716dc510ed58dc99 to your computer and use it in GitHub Desktop.
minimal .zshrc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # make backwards deletion respect word boundaries | |
| autoload -Uz select-word-style | |
| select-word-style bash | |
| bindkey '\e\177' backward-kill-word | |
| # add / as boundary | |
| WORDCHARS=${WORDCHARS//\//} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment