diff options
| author | Andrew Guschin <saintruler@gmail.com> | 2021-11-07 15:44:36 +0400 |
|---|---|---|
| committer | Andrew Guschin <saintruler@gmail.com> | 2021-11-07 15:44:36 +0400 |
| commit | 31ba0071a755233f15b346f3f70ff1c925e03d0c (patch) | |
| tree | c8970a06d2ceef4df2948dc15e6ff2f0146a5358 | |
| parent | 141f11d137a186db160a79db5056890344edbe66 (diff) | |
Removed alias for vim and changed EDITOR to emacs
| -rw-r--r-- | .config/zsh/.zshrc | 1 | ||||
| -rw-r--r-- | .profile | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/.config/zsh/.zshrc b/.config/zsh/.zshrc index 3001407..e2ede69 100644 --- a/.config/zsh/.zshrc +++ b/.config/zsh/.zshrc @@ -18,7 +18,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" alias e="$EDITOR" # XDG aliases @@ -4,7 +4,7 @@ if [ -d "$HOME/.local/bin" ] ; then fi export SHELL="/bin/zsh" -export EDITOR="kak" +export EDITOR="emacs -nw" # For Jetbrains products export _JAVA_AWT_WM_NONREPARENTING=1 |