- そもそもなぜRuby Perl
- RubyとPerlは似ているところのほうが多い * ここが好き、嫌い
- Perlは覚えることが多い
- 自分がやりたいことをコードに落としやすかった
- 言語を変えて生産性は変わるのか
| # Your init script | |
| # | |
| # Atom will evaluate this file each time a new window is opened. It is run | |
| # after packages are loaded/activated and after the previous editor state | |
| # has been restored. | |
| # | |
| # An example hack to log to the console when each text editor is saved. | |
| # | |
| # atom.workspace.observeTextEditors (editor) -> | |
| # editor.onDidSave -> |
| set-option -g default-shell "/bin/zsh" | |
| set-option -g default-command "reattach-to-user-namespace -l zsh" | |
| bind-key C-c run "tmux save-buffer - | reattach-to-user-namespace pbcopy" | |
| bind-key C-v run "reattach-to-user-namespace pbpaste | tmux load-buffer - && tmux paste-buffer" | |
| set-option -g prefix C-t | |
| bind C-t next-window | |
| set -g mode-mouse on | |
| set -g mouse-resize-pane on | |
| set -g mouse-select-pane on | |
| set -g mouse-select-window on |