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
30
31
32
33
34
35
36
37
38
39
40
41
42
autoload -U colors && colors
PS1="%B%{$fg[red]%}[%{$fg[yellow]%}%n% %{$fg[magenta]%}%~%{$fg[red]%}]%{$reset_color%}$%b "
# Basic auto/tab complete
autoload -U compinit && compinit
zstyle ':completion:*' menu select
zmodload zsh/complist
bindkey -M menuselect 'h' vi-backward-char
bindkey -M menuselect 'k' vi-up-line-or-history
bindkey -M menuselect 'j' vi-down-line-or-history
bindkey -M menuselect 'l' vi-forward-char
bindkey "^[[1;5C" forward-word
bindkey "^[[1;5D" backward-word
setopt extendedglob
_comp_options+=(globdots)
HISTFILE=$XDG_DATA_HOME/.zsh_history
HISTSIZE=10000
SAVEHIST=10000
setopt appendhistory
setopt INC_APPEND_HISTORY
setopt HIST_IGNORE_DUPS
unsetopt HIST_IGNORE_ALL_DUPS
setopt HIST_FCNTL_LOCK
# Aliases
alias start-dwl="source ~/.start-dwl"
# Direnv
eval "$($ZDOTDIR/direnv/direnv/bin/direnv hook zsh)"
# source $ZDOTDIR/direnv/nix-direnv
# Plugins
source $ZDOTDIR/plugins/liquidprompt/liquidprompt.plugin.zsh
source $ZDOTDIR/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh
source $ZDOTDIR/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
# LiquidPrompt config
export LP_PS1_POSTFIX=$'\n> '