This repository has been archived on 2024-11-06. You can view files and clone it, but cannot push or open issues or pull requests.
zsh/.zshrc

43 lines
1.3 KiB
Bash
Raw Normal View History

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
# mkdir -p "$HOME/.zsh"
# git clone https://github.com/sindresorhus/pure.git "$HOME/.zsh/pure"
# Setup Alias in $HOME/.zsh/aliasrc
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-02-10 20:57:12 -06:00
# Pure Prompt
fpath+=$HOME/.zsh/pure
autoload -U promptinit; promptinit
prompt pure
2020-02-10 20:03:14 -06:00
# History in cache directory:
HISTSIZE=10000
SAVEHIST=10000
HISTFILE=~/.cache/zsh/history
# 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-02-10 20:57:12 -06: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