Compare commits

...

2 Commits

Author SHA1 Message Date
Pin Straw
1ee5b0cc94 adding sort to kube config find 2026-05-25 16:09:10 -04:00
Pin Straw
79a96e3486 vim updates 2026-05-25 16:08:43 -04:00
3 changed files with 9 additions and 3 deletions

2
.vimrc
View File

@@ -8,6 +8,8 @@ call plug#begin()
Plug 'editorconfig/editorconfig-vim'
Plug 'towolf/vim-helm'
Plug 'valloric/youcompleteme'
Plug 'fatih/vim-go'
Plug 'NoahTheDuke/vim-just'
call plug#end()
syntax on

View File

@@ -1,7 +1,11 @@
export zig_version := "master"
hello-world:
echo "Hello World"
default:
@just --list
check-vimrc:
#!/usr/bin/env bash
diff -u .vimrc ~/.vimrc || echo "Local file has updates"
# Full zig install
setup-zig: setup-zig-lib setup-zig-path setup-zls

View File

@@ -23,6 +23,6 @@ EOF
cat <<'EOF'>~/.bashrc.d/kubectl_config
if [[ -d "$HOME/.kube/config.d" ]]; then
export KUBECONFIG=$(find ~/.kube/config.d/ -type f | tr '\n' ':')
export KUBECONFIG=$(find ~/.kube/config.d/ -type f | sort | tr '\n' ':')
fi
EOF