From d040228c4c0ca6cfa9f56b831e7bd8bf17490ce2 Mon Sep 17 00:00:00 2001 From: Sravan Balaji Date: Mon, 25 May 2020 16:53:22 -0400 Subject: [PATCH] bashrc reorganization - Moved aliases and exports to end of bashrc --- .bashrc | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.bashrc b/.bashrc index 5d29c35..5431a5f 100644 --- a/.bashrc +++ b/.bashrc @@ -116,9 +116,6 @@ if ! shopt -oq posix; then fi fi -# Set default editor to vscode -export EDITOR="code -w" - # Powerline Shell function _update_ps1() { PS1=$(powerline-shell $?) @@ -133,3 +130,7 @@ neofetch # ALIASES alias config='/usr/bin/git --git-dir=$HOME/.cfg/ --work-tree=$HOME' + +# EXPORTS +export EDITOR="code -w" +export TERM=xterm-256color