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

50 lines
1.5 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
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
2020-06-07 16:09:57 +02:00
EDITOR=nano
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-06-07 16:09:57 +02:00
PURE_PROMPT_SYMBOL=\$
PURE_PROMPT_VICMD_SYMBOL=\<
2020-02-10 20:57:12 -06:00
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-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-06-07 16:09:57 +02:00
bindkey "^[[H" beginning-of-line
bindkey "^[[F" end-of-line
bindkey "^[[3~" delete-char
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