aboutsummaryrefslogtreecommitdiff
path: root/zsh
diff options
context:
space:
mode:
authoreug-vs <eug-vs@keemail.me>2021-07-21 16:54:47 +0300
committereug-vs <eug-vs@keemail.me>2021-07-21 16:54:47 +0300
commit0fb0039433c0777027f9f9fc63d6ec77117a7f48 (patch)
treeafc75dc189780353dace51cba46b578ea7db9329 /zsh
parent21334ded09d4def098b0db76f1ddb1f1825e6c96 (diff)
downloaddotfiles-0fb0039433c0777027f9f9fc63d6ec77117a7f48.tar.gz
feat: move zsh and git packages to env
Diffstat (limited to 'zsh')
-rw-r--r--zsh/.zshrc37
1 files changed, 0 insertions, 37 deletions
diff --git a/zsh/.zshrc b/zsh/.zshrc
deleted file mode 100644
index 6746f4b..0000000
--- a/zsh/.zshrc
+++ /dev/null
@@ -1,37 +0,0 @@
-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
-
-# Completion
-autoload -U compinit
-zstyle ':completion:*' menu select
-zmodload zsh/complist
-compinit
-_comp_options+=(globdots)
-
-# 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 config='git --git-dir=$HOME/.dotfiles.git --work-tree=$HOME'
-
-# Env
-export LESS=R # Option to less so that git log/diff hide output after exit
-export EDITOR=nvim
-export NVM_DIR="$HOME/.nvm"
-[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" --no-use # 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