From a94ac638f8bb946e98ca04503e7907f9f1d63c3e Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Wed, 30 Aug 2023 22:40:03 +0200 Subject: Reduce further --- runcoms/zlogin | 7 ------- runcoms/zprofile | 11 ++--------- runcoms/zshenv | 7 ------- runcoms/zshrc | 4 ---- 4 files changed, 2 insertions(+), 27 deletions(-) (limited to 'runcoms') diff --git a/runcoms/zlogin b/runcoms/zlogin index 8af0975..60876ac 100644 --- a/runcoms/zlogin +++ b/runcoms/zlogin @@ -1,10 +1,3 @@ -# -# Executes commands at login post-zshrc. -# -# Authors: -# Sorin Ionescu -# - # Execute code that does not affect the current session in the background. { # Compile the completion dump to increase startup speed. diff --git a/runcoms/zprofile b/runcoms/zprofile index d0cb3b8..a079fab 100644 --- a/runcoms/zprofile +++ b/runcoms/zprofile @@ -1,10 +1,3 @@ -# -# Executes commands at login pre-zshrc. -# -# Authors: -# Sorin Ionescu -# - # # Browser # @@ -17,8 +10,8 @@ fi # Editors # -export EDITOR='vi' -export VISUAL='vi' +export EDITOR='nvim' +export VISUAL='nvim' export PAGER='less' # diff --git a/runcoms/zshenv b/runcoms/zshenv index 2d97203..c23f284 100644 --- a/runcoms/zshenv +++ b/runcoms/zshenv @@ -1,10 +1,3 @@ -# -# Defines environment variables. -# -# Authors: -# Sorin Ionescu -# - # Ensure that a non-login, non-interactive shell has a defined environment. if [[ "$SHLVL" -eq 1 && ! -o LOGIN && -s "${ZDOTDIR:-$HOME}/.zprofile" ]]; then source "${ZDOTDIR:-$HOME}/.zprofile" diff --git a/runcoms/zshrc b/runcoms/zshrc index f1d97f6..faf73a8 100644 --- a/runcoms/zshrc +++ b/runcoms/zshrc @@ -34,10 +34,6 @@ export NVM_DIR=$HOME/.nvm export PATH=$PATH:$HOME:${GOPATH//://bin:}/bin export PATH=$PATH:$ANDROID_HOME/tools:$ANDROID_HOME/platform-tools:$ANDROID_NDK_HOME:/Applications/calibre.app/Contents/MacOS -# Editor. -export EDITOR="nvim" -export VISUAL="nvim" - # Python related variables export VIRTUAL_ENV_DISABLE_PROMPT=1 export WORKON_HOME=$HOME/.virtualenvs -- cgit