SREとはのブログ

日々の作業メモ

2019-09-01から1ヶ月間の記事一覧

Windows tab mac

cask install hyperswitch

bash-completion

後でやってみる sig9.hatenablog.com

tmux メモ

``` #マウス操作を有効にするset-option -g mouse on # スクロールアップするとコピーモードに入るbind-key -n WheelUpPane if-shell -F -t = "#{mouse_any_flag}" "send-keys -M" "if -Ft= '#{pane_in_mode}' 'send-keys -M' 'select-pane -t=; copy-mode -…

21 cd tmux-powerline/ 26 cd segments/ 28 vim weather.sh export TMUX_POWERLINE_SEG_WEATHER_LOCATION="26237038" 表示はされないのは https://github.com/erikw/tmux-powerline/issues/219 動かない?

fonts install

``` ➜ ./install.shCopying fonts...Powerline fonts installed to /Users/tm/Library/Fonts ```

Iterm2 複数貼り付け時の警告

https://ex1.m-yabe.com/archives/2740

bash_profile

vim .bash_profile if [ -f ~/.bashrc ] ; then . ~/.bashrc fi

tmux設定

note.mu tmux-powerline - Qiita

MACターミナル終了時に履歴消えないように

$ echo 'shell_session_update' > $HOME/.bash_logout

macでpeco

mac peco導入 bashを使っています。 # 環境 mac os Mojave 10.14.5 brew install peco sudo vi ~/.bash_profilesudo vi ~/.bashrc ~/.bash_profile if [ -f ~/.bashrc ]; then . ~/.bashrc fi ~/.bashrc peco-select-history() { declare l=$(HISTTIMEFORMAT…