From 63a2c96e8a8ae5ac624742377fa45e7363fcb907 Mon Sep 17 00:00:00 2001 From: Jeremy Dormitzer Date: Mon, 28 Dec 2020 11:46:20 -0500 Subject: [PATCH] Add k8s aliases and fix PATH --- bash/.bashrc | 2 ++ bash/.profile | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/bash/.bashrc b/bash/.bashrc index 3a03001..e85b3d0 100644 --- a/bash/.bashrc +++ b/bash/.bashrc @@ -24,6 +24,8 @@ fi alias k=kubectl alias kctx=kubectx +alias kns=kubens +alias watch='watch ' # Setup pyenv (https://github.com/pyenv/pyenv) if command -v pyenv 1>/dev/null 2>&1; then diff --git a/bash/.profile b/bash/.profile index 5102e5b..8cacfad 100644 --- a/bash/.profile +++ b/bash/.profile @@ -6,7 +6,7 @@ then fi export LEDGER_FILE="$HOME/journal.ledger" -PATH="$HOME/.local/bin":"$HOME/bin/":"$HOME/.gem/ruby/2.6.0/bin":"$HOME/.gem/ruby/2.5.0/bin":"$HOME/go/bin":"/opt/local/bin":"$PATH" +PATH="$HOME/bin/":"$HOME/.local/bin":"$HOME/.gem/ruby/2.6.0/bin":"$HOME/.gem/ruby/2.5.0/bin":"$HOME/go/bin":"/opt/local/bin":"$PATH" EDITOR="$(which emacsclient)" export EDITOR