dotfiles

My dotfiles
git clone git://mcdim.xyz/dotfiles.git
Log | Files | Refs

.zshrc (1080B)


      1 # Lines configured by zsh-newuser-install
      2 HISTFILE=~/.histfile
      3 HISTSIZE=1000
      4 SAVEHIST=1000
      5 unsetopt beep
      6 bindkey -v
      7 # End of lines configured by zsh-newuser-install
      8 # The following lines were added by compinstall
      9 zstyle :compinstall filename '/home/michael/.zshrc'
     10 
     11 autoload -U colors && colors
     12 zstyle ':completion:*' menu select
     13 zmodload zsh/complist
     14 #compinit
     15 _comp_options+=(globdots)
     16 
     17 bindkey -M menuselect 'h' vi-backward-char
     18 bindkey -M menuselect 'k' vi-up-line-or-history
     19 bindkey -M menuselect 'l' vi-forward-char
     20 bindkey -M menuselect 'j' vi-down-line-or-history
     21 bindkey -v '^?' backward-delete-char
     22 
     23 PS1="%{$fg[red]%}%n%{$reset_color%} ᛋ "
     24 
     25 alias ls="ls --color=auto -p"
     26 alias diff="diff --color=auto"
     27 alias grep="grep --color=auto"
     28 alias grep="grep --color=auto"
     29 
     30 alias ccrypt='~/Documents/.ccrypt/ccrypt'
     31 alias nm="neomutt"
     32 alias nb="newsboat"
     33 alias ncm="ncmpcpp"
     34 alias rtv="rtv --enable-media"
     35 alias sxiv="sxiv -a"
     36 
     37 autoload -Uz compinit
     38 compinit
     39 # End of lines added by compinstall
     40 source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh