View init
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
visudo | |
# {username} ALL=NOPASSWD: AL | |
sudo apt update | |
sudo apt upgrade | |
sudo apt install \ | |
language-pack-ja-base language-pack-ja ibus-mozc \ | |
zsh \ | |
git \ |
View plugins.toml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
shell = 'zsh' | |
[plugins.zsh-defer] | |
github = 'romkatv/zsh-defer' | |
apply = ['source'] | |
[templates] | |
defer = { value = 'zsh-defer source "{{ file }}"', each = true } | |
[plugins.compinit] |
View .zshrc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
setopt nonomatch | |
alias ll='ls -al' | |
alias windows='nkf -sLw --overwrite' | |
alias linux='nkf -wLu --overwrite' | |
alias emacs='emacs --no-windows' | |
HISTFILE=$HOME/.zsh_history # 履歴をファイルに保存する | |
HISTSIZE=100000 # メモリ内の履歴の数 | |
SAVEHIST=100000 # 保存される履歴の数 |
View zsh_asdf_memo.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# zsh | |
- https://wiki.archlinux.jp/index.php/Zsh#.E3.82.B5.E3.83.BC.E3.83.89.E3.83.91.E3.83.BC.E3.83.86.E3.82.A3.E6.8B.A1.E5.BC.B5 | |
## sheldon | |
- https://github.com/rossmacarthur/sheldon | |
- https://ryota2357.com/blog/2022/zsh-plugmanager-zplug-to-sheldon/ | |
- https://ktrysmt.github.io/blog/migrate-zinit-to-sheldon/ | |
- https://zenn.dev/ganta/articles/e1e0746136ce67 | |
# asdf |
View k8s_kubernetes_memo.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# minikube | |
- https://zenn.dev/gekal/articles/minikube-on-mac-as-local-k8s-env | |
View docker_memo.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Docker without Docker Desktop | |
## Docker without Docker Desktop for macOS | |
- https://qiita.com/kyosuke5_20/items/cd5f3df4e827c34d7c4a | |
## Docker without Docker Desktop for Windows | |
- https://qiita.com/ohtsuka1317/items/617a865b8a9d4fb67989 |
View Brewfile.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
brew update | |
brew upgrade | |
brew install brew-cask | |
brew install zsh | |
brew install git | |
brew install hub | |
brew install gist | |
brew install curl | |
brew install wget |
View .emacs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(define-key global-map "\C-a" 'start-kbd-macro) | |
(define-key global-map "\C-q" 'end-kbd-macro) | |
(define-key global-map "\C-z" 'call-last-kbd-macro) | |
(define-key global-map "\C-o" 'beginning-of-buffer) | |
(define-key global-map "\C-l" 'end-of-buffer) | |
(put 'upcase-region 'disabled nil) | |
(cond | |
( (or (eq window-system 'ns) (eq window-system 'mac) ) | |
; for cocoa emacs |
View ja.lng.php.1.5.0.diff
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
184d183 | |
< 'err_extract' => 'Unable to extract files from uploaded archive', | |
187,188c186 | |
< 'btn_submit' => '実行', | |
< 'msg_extract' => 'Extract & Attach files' | |
--- | |
> 'btn_submit' => '実行' |
View en.lng.php.1.5.0.diff
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
182d181 | |
< 'err_extract' => 'Unable to extract files from uploaded archive', | |
185,186c184 | |
< 'btn_submit' => 'Submit', | |
< 'msg_extract' => 'Extract & Attach files' | |
--- | |
> 'btn_submit' => 'Submit' |
NewerOlder