diff options
author | Raymaekers Luca <raymaekers.luca@gmail.com> | 2023-12-12 00:16:15 +0100 |
---|---|---|
committer | Raymaekers Luca <raymaekers.luca@gmail.com> | 2023-12-12 00:16:15 +0100 |
commit | 6b44e39caba17672bf32960f5829597d9fa544b1 (patch) | |
tree | 433bda0daa8504538ce27bdc7a80999bba611663 /config | |
parent | c4bc59d1dc75f39114aa023d8f2b9945989a456d (diff) | |
parent | f4dc6e9489bd1274cba77aec04343dbec72f4a7d (diff) |
Merge branch 'main' of db:dotfiles
Diffstat (limited to 'config')
-rw-r--r-- | config/essentials/zsh/aliases.sh | 3 | ||||
-rw-r--r-- | config/home/.zshenv | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/config/essentials/zsh/aliases.sh b/config/essentials/zsh/aliases.sh index 45d15e7..2e23010 100644 --- a/config/essentials/zsh/aliases.sh +++ b/config/essentials/zsh/aliases.sh @@ -1,6 +1,9 @@ #!/bin/sh # s/alias \([^-]\)/alias -g \1 +# The most important one +alias vi='emacsclient -nw' + # Zsh specific aliases if [ $SHELL = "/bin/zsh" ] then diff --git a/config/home/.zshenv b/config/home/.zshenv index cfaef9c..d33fbd7 100644 --- a/config/home/.zshenv +++ b/config/home/.zshenv @@ -1,6 +1,6 @@ #!/bin/zsh -export EDITOR="nvim" -export VISUAL="nvim" +export EDITOR="emacsclient -t" +export VISUAL="emacsclient -t -c -a emacs" export BROWSER="librewolf" export VIEWER="zathura" |