Last active
August 7, 2023 16:05
-
-
Save sshymko/ae3ca3d6e3c84381a08e06aecc7cd466 to your computer and use it in GitHub Desktop.
Zsh configuration of colors and Bash-style cursor navigation and auto-completion
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
unsetopt multios | |
export CLICOLOR=1 | |
export LSCOLORS=ExFxCxDxBxegedabagacad | |
export PROMPT='%F{cyan}%n%f@%F{green}%m:%f%B%F{yellow}%0~%f%b%(!.#.$) ' | |
autoload -U select-word-style && select-word-style bash | |
autoload -Uz +X compinit && compinit | |
autoload -Uz +X bashcompinit && bashcompinit |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment