Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

いくつかのconfigの更新 #79

Merged
merged 6 commits into from
Sep 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions .config/code/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -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
},
Expand Down Expand Up @@ -130,7 +130,7 @@
// GitHub Copilot
"github.copilot.enable": {
"*": true,
"plaintext": false,
"plaintext": true,
"markdown": true,
"scminput": false,
"yaml": true,
Expand Down Expand Up @@ -166,7 +166,7 @@
},
"files.associations": {
"*.html.erb": "erb",
"*.m": "matlab",
"*.json5": "*.json"
},
"go.toolsManagement.autoUpdate": true,
"diffEditor.ignoreTrimWhitespace": false,
Expand Down Expand Up @@ -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,
}
7 changes: 7 additions & 0 deletions .zsh/init/zshrc/alias.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -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'
1 change: 1 addition & 0 deletions .zsh/init/zshrc/direnv.zsh
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
eval "$(direnv hook zsh)"
File renamed without changes.
1 change: 1 addition & 0 deletions .zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -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"