50 lines
1.5 KiB
Bash
50 lines
1.5 KiB
Bash
# Dependancies You Need for this Config
|
|
# zsh-syntax-highlighting - syntax highlighting for ZSH in standard repos
|
|
# autojump - jump to directories with j or jc for child or jo to open in file manager
|
|
# zsh-autosuggestions - Suggestions based on your history
|
|
|
|
# Initial Setup
|
|
# mkdir -p "$HOME/zsh/.zsh"
|
|
# git submodule add https://github.com/sindresorhus/pure.git "$HOME/zsh/pure"
|
|
# Setup Alias in $HOME/zsh/aliasrc
|
|
|
|
# Enable colors and change prompt:
|
|
autoload -U colors && colors
|
|
PS1="%B%{$fg[red]%}[%{$fg[yellow]%}%n%{$fg[green]%}@%{$fg[blue]%}%M %{$fg[magenta]%}%~%{$fg[red]%}]%{$reset_color%}$%b "
|
|
|
|
# Custom Variables
|
|
EDITOR=nano
|
|
|
|
# Pure Prompt
|
|
fpath+=$HOME/zsh/pure
|
|
autoload -U promptinit; promptinit
|
|
prompt pure
|
|
PURE_PROMPT_SYMBOL=\$
|
|
PURE_PROMPT_VICMD_SYMBOL=\<
|
|
|
|
# History in cache directory:
|
|
HISTSIZE=10000
|
|
SAVEHIST=10000
|
|
HISTFILE=~/.cache/zshhistory
|
|
|
|
# Basic auto/tab complete:
|
|
autoload -U compinit
|
|
zstyle ':completion:*' menu select
|
|
zmodload zsh/complist
|
|
compinit
|
|
_comp_options+=(globdots) # Include hidden files.
|
|
|
|
# Custom ZSH Binds
|
|
bindkey '^ ' autosuggest-accept
|
|
bindkey "^[[H" beginning-of-line
|
|
bindkey "^[[F" end-of-line
|
|
bindkey "^[[3~" delete-char
|
|
|
|
# Load aliases and shortcuts if existent.
|
|
[ -f "$HOME/zsh/aliasrc" ] && source "$HOME/zsh/aliasrc"
|
|
|
|
# Load ; should be last.
|
|
source $HOME/zsh/zsh-autosuggestions/zsh-autosuggestions.zsh 2>/dev/null
|
|
source $HOME/zsh/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh 2>/dev/null
|
|
source /usr/share/autojump/autojump.zsh 2>/dev/null
|