-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.zshrc
29 lines (22 loc) · 859 Bytes
/
.zshrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# 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 GIT_EDITOR="code --wait"
export CLICOLOR=1
export LSCOLORS=gxfxcxdxbxegedabagacad
export PATH=$HOME/.local/bin:$PATH
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)"