diff options
author | Joe <rbo@gmx.us> | 2024-06-29 23:28:33 +0200 |
---|---|---|
committer | Joe <rbo@gmx.us> | 2024-06-29 23:28:33 +0200 |
commit | 952e68fb26f19450487b34c789ff0a1b19574343 (patch) | |
tree | 80b5811af025952eb65e5fd89bb13f50d8f44fcb | |
parent | up (diff) | |
download | dotfiles-bsd-952e68fb26f19450487b34c789ff0a1b19574343.tar.gz dotfiles-bsd-952e68fb26f19450487b34c789ff0a1b19574343.tar.bz2 dotfiles-bsd-952e68fb26f19450487b34c789ff0a1b19574343.tar.xz dotfiles-bsd-952e68fb26f19450487b34c789ff0a1b19574343.tar.zst dotfiles-bsd-952e68fb26f19450487b34c789ff0a1b19574343.zip |
up
-rw-r--r-- | .config/env | 2 | ||||
-rw-r--r-- | .config/zsh/alias.zsh | 2 | ||||
-rwxr-xr-x | .local/bin/editorcmd | 3 |
3 files changed, 2 insertions, 5 deletions
diff --git a/.config/env b/.config/env index 3bbd2c2..ea0d54c 100644 --- a/.config/env +++ b/.config/env @@ -25,7 +25,7 @@ export XDG_PICTURES_DIR="$HOME"/pics export XDG_VIDEOS_DIR="$HOME"/vids export XDG_RUNTIME_DIR=/var/run/"$USER" # Apps -export EDITOR='editorcmd' +export EDITOR='nvim' export VISUAL="${EDITOR}" export PAGER='less' export MANPAGER='less' diff --git a/.config/zsh/alias.zsh b/.config/zsh/alias.zsh index 34cebac..323cd14 100644 --- a/.config/zsh/alias.zsh +++ b/.config/zsh/alias.zsh @@ -18,7 +18,7 @@ tree() { } alias hff='cd ~/dev/go/hardflip' alias \ - e='editorcmd' \ + e='nvim' \ vim='nvim' \ c='clear' \ less='less --tabs 4' \ diff --git a/.local/bin/editorcmd b/.local/bin/editorcmd deleted file mode 100755 index 24fa7e7..0000000 --- a/.local/bin/editorcmd +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/sh - -exec emacsclient -nw -a nvim "$@" |