From da2cd09c65bffa91bbbbd1b8af40d492f8e4e1c0 Mon Sep 17 00:00:00 2001 From: Pin Straw Date: Tue, 24 Mar 2026 00:28:33 -0400 Subject: [PATCH] updates --- .vimrc | 1 + setup-bashrc.sh | 6 ++++++ 2 files changed, 7 insertions(+) diff --git a/.vimrc b/.vimrc index 01e6bea..e3c623e 100644 --- a/.vimrc +++ b/.vimrc @@ -7,6 +7,7 @@ call plug#begin() Plug 'dense-analysis/ale' Plug 'editorconfig/editorconfig-vim' Plug 'towolf/vim-helm' + Plug 'valloric/youcompleteme' call plug#end() syntax on diff --git a/setup-bashrc.sh b/setup-bashrc.sh index ea7e0c5..2810295 100644 --- a/setup-bashrc.sh +++ b/setup-bashrc.sh @@ -20,3 +20,9 @@ function check-commit { alias cspell="docker run --rm -it -v \"\$(pwd):/workdir:Z\" ghcr.io/streetsidesoftware/cspell:latest \"**\"" alias cspell-ignore="cspell | grep -o \"Unknown word (.*)\" | sed -E 's|.*\((.*)\).*|\1|' | sort | uniq | sed -r 's/\\x1B\\[(;?[0-9]{1,3})+[mGK]//g'" EOF + +cat <<'EOF'>~/.bashrc.d/kubectl_config +if [[ -d "$HOME/.kube/config.d" ]]; then + export KUBECONFIG=$(find ~/.kube/config.d/ -type f | tr '\n' ':') +fi +EOF