From 0dc6a9ac01815f3ca52aa766b209166567decc3c Mon Sep 17 00:00:00 2001 From: Anthony Cicchetti Date: Tue, 8 Sep 2020 16:16:19 -0400 Subject: [PATCH] Editor --- zsh/zshrc | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/zsh/zshrc b/zsh/zshrc index abee614..0068c81 100644 --- a/zsh/zshrc +++ b/zsh/zshrc @@ -89,6 +89,13 @@ function vim() { fi } +function edit() { + local editor + printf -v editor "${EDITOR} \"\$@\"" + echo $editor + eval "${editor}" +} + path+=($HOME/.anyenv/bin) eval "$(anyenv init -)" path+=($(yarn global bin))