diff options
| -rw-r--r-- | .config/zsh/.zshrc | 1 | ||||
| -rw-r--r-- | .profile | 8 |
2 files changed, 1 insertions, 8 deletions
diff --git a/.config/zsh/.zshrc b/.config/zsh/.zshrc index 87f25b8..ff4d0c9 100644 --- a/.config/zsh/.zshrc +++ b/.config/zsh/.zshrc @@ -39,5 +39,6 @@ alias dotfiles="/usr/bin/git --git-dir='$HOME/.dotfiles' --work-tree='$HOME'" alias dotstat="/usr/bin/git --git-dir='$HOME/.dotfiles' --work-tree='$HOME' status" alias dotdiff="/usr/bin/git --git-dir='$HOME/.dotfiles' --work-tree='$HOME' diff" alias dotadd="/usr/bin/git --git-dir='$HOME/.dotfiles' --work-tree='$HOME' add -f" +alias vim="nvim" [[ -z "$TMUX" ]] && exec tmux @@ -8,14 +8,6 @@ # for ssh logins, install and configure the libpam-umask package. #umask 022 -# if running bash -if [ -n "$BASH_VERSION" ]; then - # include .bashrc if it exists - if [ -f "$HOME/.bashrc" ]; then - . "$HOME/.bashrc" - fi -fi - # set PATH so it includes user's private bin if it exists if [ -d "$HOME/bin" ] ; then PATH="$HOME/bin:$PATH" |