2020-02-10 20:05:35 -06:00
|
|
|
# Dependancies You Need for this Config
|
|
|
|
# zsh-syntax-highlighting - syntax highlighting for ZSH in standard repos
|
2020-02-10 20:20:57 -06:00
|
|
|
# autojump - jump to directories with j or jc for child or jo to open in file manager
|
|
|
|
# zsh-autosuggestions - Suggestions based on your history
|
|
|
|
|
2020-02-10 20:57:12 -06:00
|
|
|
# Initial Setup
|
2020-05-29 11:55:54 -05:00
|
|
|
# mkdir -p "$HOME/zsh/.zsh"
|
2020-06-01 11:30:25 -05:00
|
|
|
# git submodule add https://github.com/sindresorhus/pure.git "$HOME/zsh/pure"
|
|
|
|
# Setup Alias in $HOME/zsh/aliasrc
|
2020-02-10 20:57:12 -06:00
|
|
|
|
2020-02-10 20:03:14 -06:00
|
|
|
# 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 "
|
|
|
|
|
2020-06-04 17:17:02 -05:00
|
|
|
# Custom Variables
|
|
|
|
EDITOR=vim
|
2020-02-10 20:57:12 -06:00
|
|
|
|
|
|
|
# Pure Prompt
|
2020-06-01 11:30:25 -05:00
|
|
|
fpath+=$HOME/zsh/pure
|
2020-02-10 20:57:12 -06:00
|
|
|
autoload -U promptinit; promptinit
|
|
|
|
prompt pure
|
|
|
|
|
2020-02-10 20:03:14 -06:00
|
|
|
# History in cache directory:
|
|
|
|
HISTSIZE=10000
|
|
|
|
SAVEHIST=10000
|
2020-06-01 11:30:25 -05:00
|
|
|
HISTFILE=~/.cache/zshhistory
|
2020-06-11 13:23:55 -05:00
|
|
|
setopt appendhistory
|
2020-02-10 20:03:14 -06:00
|
|
|
|
|
|
|
# Basic auto/tab complete:
|
|
|
|
autoload -U compinit
|
|
|
|
zstyle ':completion:*' menu select
|
|
|
|
zmodload zsh/complist
|
|
|
|
compinit
|
2020-02-10 20:57:12 -06:00
|
|
|
_comp_options+=(globdots) # Include hidden files.
|
2020-02-10 20:03:14 -06:00
|
|
|
|
2020-02-10 20:20:57 -06:00
|
|
|
# Custom ZSH Binds
|
|
|
|
bindkey '^ ' autosuggest-accept
|
2020-02-10 20:03:14 -06:00
|
|
|
|
|
|
|
# Load aliases and shortcuts if existent.
|
2020-06-01 11:30:25 -05:00
|
|
|
[ -f "$HOME/zsh/aliasrc" ] && source "$HOME/zsh/aliasrc"
|
2020-02-10 20:03:14 -06:00
|
|
|
|
|
|
|
# Load ; should be last.
|
2020-02-10 20:20:57 -06:00
|
|
|
source /usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh 2>/dev/null
|
2020-02-10 20:03:14 -06:00
|
|
|
source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh 2>/dev/null
|
2020-02-10 21:23:21 -06:00
|
|
|
source /usr/share/autojump/autojump.zsh 2>/dev/null
|