This commit is contained in:
Pin Straw
2026-03-24 00:28:33 -04:00
parent 34c65e0358
commit da2cd09c65
2 changed files with 7 additions and 0 deletions

1
.vimrc
View File

@@ -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

View File

@@ -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