diff --git a/.config/code/settings.json b/.config/code/settings.json index 9c4c27f..52dcfaf 100644 --- a/.config/code/settings.json +++ b/.config/code/settings.json @@ -40,7 +40,7 @@ "editor.lineNumbers": "on", "editor.occurrencesHighlight": false, "editor.renderLineHighlight": "none", - "editor.fontFamily": "YuGothic, 'Yu Gothic'", + "editor.fontFamily": "'Hack Nerd Font', 'Yu Gothic'", "editor.fontSize": 18, "editor.lineHeight": 32 }, @@ -130,7 +130,7 @@ // GitHub Copilot "github.copilot.enable": { "*": true, - "plaintext": false, + "plaintext": true, "markdown": true, "scminput": false, "yaml": true, @@ -166,7 +166,7 @@ }, "files.associations": { "*.html.erb": "erb", - "*.m": "matlab", + "*.json5": "*.json" }, "go.toolsManagement.autoUpdate": true, "diffEditor.ignoreTrimWhitespace": false, @@ -219,5 +219,9 @@ "[css]": { "editor.defaultFormatter": "esbenp.prettier-vscode" }, + "vs-kubernetes": { + "vs-kubernetes.minikube-show-information-expiration": "2023-09-11T08:55:50.599Z" + }, + "terminal.integrated.fontFamily": "'Hack Nerd Font', monospace", "window.zoomLevel": 1, } diff --git a/.zsh/init/zshrc/alias.zsh b/.zsh/init/zshrc/alias.zsh index 57c2441..daf0be0 100755 --- a/.zsh/init/zshrc/alias.zsh +++ b/.zsh/init/zshrc/alias.zsh @@ -26,3 +26,10 @@ alias gs='git status' # global aliases alias -g C='| pbcopy' alias -g G='| grep --color=auto' + +# kubectl aliases +alias k='kubectl' +alias kga='kubectl get all' +alias kgp='kubectl get pods' +alias kgs='kubectl get services' +alias kgn='kubectl get nodes' diff --git a/.zsh/init/zshrc/direnv.zsh b/.zsh/init/zshrc/direnv.zsh new file mode 100644 index 0000000..6aa8b1f --- /dev/null +++ b/.zsh/init/zshrc/direnv.zsh @@ -0,0 +1 @@ +eval "$(direnv hook zsh)" diff --git a/.zsh/init/zprofile/rye.zsh b/.zsh/init/zshrc/rye.zsh old mode 100644 new mode 100755 similarity index 100% rename from .zsh/init/zprofile/rye.zsh rename to .zsh/init/zshrc/rye.zsh diff --git a/.zshrc b/.zshrc index e35f5be..6c47c61 100644 --- a/.zshrc +++ b/.zshrc @@ -18,3 +18,4 @@ source "${ZSH_INIT_DIR}/alias.zsh" # Fig post block. Keep at the bottom of this file. [[ -f "$HOME/.fig/shell/zshrc.post.zsh" ]] && builtin source "$HOME/.fig/shell/zshrc.post.zsh" +