From 9619e81aaf1d7c86364c3f5834131eddd2ef55b9 Mon Sep 17 00:00:00 2001 From: eug-vs Date: Sat, 27 Mar 2021 00:10:58 +0300 Subject: feat(zsh): remove bloated Oh-my-zsh --- .zshrc | 28 +++++++++++++++++++++++----- 1 file changed, 23 insertions(+), 5 deletions(-) (limited to '.zshrc') diff --git a/.zshrc b/.zshrc index bc5c12e..eb46726 100644 --- a/.zshrc +++ b/.zshrc @@ -1,19 +1,37 @@ -export ZSH="$HOME/.oh-my-zsh" -export EDITOR=nvim +autoload -U colors && colors +PS1="%B%{$fg[white]%}[%{$fg[cyan]%}%n%{$fg[white]%}@%{$fg[green]%}%M %{$fg[yellow]%}%~%{$fg[white]%}]%{$reset_color%}$%b " +bindkey -e + +# History in cache directory: +HISTSIZE=10000 +SAVEHIST=10000 +HISTFILE=~/.cache/zsh/history -ZSH_THEME="ys" +# Completion +autoload -U compinit +zstyle ':completion:*' menu select +zmodload zsh/complist +compinit +_comp_options+=(globdots) -plugins=(git) -source $ZSH/oh-my-zsh.sh +# Edit line in vim with ctrl-e: +autoload edit-command-line; zle -N edit-command-line +bindkey '^e' edit-command-line +# Aliases alias vi=nvim alias vim=nvim alias mux=tmuxinator alias config='git --git-dir=$HOME/.dotfiles.git --work-tree=$HOME' +# Env +export EDITOR=nvim export NVM_DIR="$HOME/.nvm" [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm [ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion export PATH=$PATH:~/.local/bin + +# Syntax highlighting, must be last +source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh -- cgit v1.2.3