Compare commits
2 Commits
cc6037a945
...
1ee5b0cc94
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1ee5b0cc94 | ||
|
|
79a96e3486 |
2
.vimrc
2
.vimrc
@@ -8,6 +8,8 @@ call plug#begin()
|
|||||||
Plug 'editorconfig/editorconfig-vim'
|
Plug 'editorconfig/editorconfig-vim'
|
||||||
Plug 'towolf/vim-helm'
|
Plug 'towolf/vim-helm'
|
||||||
Plug 'valloric/youcompleteme'
|
Plug 'valloric/youcompleteme'
|
||||||
|
Plug 'fatih/vim-go'
|
||||||
|
Plug 'NoahTheDuke/vim-just'
|
||||||
call plug#end()
|
call plug#end()
|
||||||
syntax on
|
syntax on
|
||||||
|
|
||||||
|
|||||||
8
justfile
8
justfile
@@ -1,7 +1,11 @@
|
|||||||
export zig_version := "master"
|
export zig_version := "master"
|
||||||
|
|
||||||
hello-world:
|
default:
|
||||||
echo "Hello World"
|
@just --list
|
||||||
|
|
||||||
|
check-vimrc:
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
diff -u .vimrc ~/.vimrc || echo "Local file has updates"
|
||||||
|
|
||||||
# Full zig install
|
# Full zig install
|
||||||
setup-zig: setup-zig-lib setup-zig-path setup-zls
|
setup-zig: setup-zig-lib setup-zig-path setup-zls
|
||||||
|
|||||||
@@ -23,6 +23,6 @@ EOF
|
|||||||
|
|
||||||
cat <<'EOF'>~/.bashrc.d/kubectl_config
|
cat <<'EOF'>~/.bashrc.d/kubectl_config
|
||||||
if [[ -d "$HOME/.kube/config.d" ]]; then
|
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
|
fi
|
||||||
EOF
|
EOF
|
||||||
|
|||||||
Reference in New Issue
Block a user