Created
February 15, 2022 23:50
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
# Aliases | |
alias ls='ls -h' | |
alias ll='ls -l' | |
alias la='ls -a' | |
alias lla='ls -la' | |
alias ls='ls --color' | |
alias less='less --quiet' | |
alias df='df --human-readable' | |
alias du='du --human-readable' | |
export EDITOR=code | |
export CLICOLOR=1 | |
export LSCOLORS=gxfxcxdxbxegedabagacad | |
autoload -U compinit; compinit | |
setopt MENU_COMPLETE | |
zstyle ':completion:*' completer _extensions _complete _approximate | |
zstyle ':completion:*' complete true | |
zstyle ':completion:*' matcher-list 'm:{[:lower:][:upper:]}={[:upper:][:lower:]}' 'm:{[:lower:][:upper:]}={[:upper:][:lower:]} l:|=* r:|=*' 'm:{[:lower:][:upper:]}={[:upper:][:lower:]} l:|=* r:|=*' 'm:{[:lower:][:upper:]}={[:upper:][:lower:]} l:|=* r:|=*' | |
zstyle ':completion:*' menu select | |
zstyle ':completion:*:rm:*' ignore-line yes | |
eval "$(starship init zsh)" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment