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
# Change C-b to C-a | |
unbind C-b | |
set-option -g prefix C-a | |
bind-key C-a send-prefix | |
set -g mouse on | |
# Start windows and panes at 1, not 0 | |
set -g base-index 1 | |
setw -g pane-base-index 1 |
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
export ZSH=/Users/nowakov/.oh-my-zsh | |
export EDITOR=/usr/bin/vim | |
## HANDY ALIASES | |
alias mux="tmuxinator" | |
alias rdma="rake db:migrate; RAILS_ENV=test rake db:migrate" | |
## THEME | |
ZSH_THEME="agnoster" |
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
-rw-r--r-- 1 Mateusz staff 2477 Sep 14 16:38 0_package_control_loader.sublime-package | |
-rw-r--r-- 1 Mateusz staff 2613 Sep 15 10:14 All Autocomplete.sublime-package | |
-rw-r--r-- 1 Mateusz staff 30853 Nov 3 11:48 ApplySyntax.sublime-package | |
-rw-r--r-- 1 Mateusz staff 43660 Sep 14 16:39 Better CoffeeScript.sublime-package | |
-rw-rw-rw- 1 Mateusz staff 28255 Oct 9 14:06 Better RSpec.sublime-package | |
-rw-r--r-- 1 Mateusz staff 153235 Nov 18 11:47 BracketHighlighter.sublime-package | |
-rw-r--r-- 1 Mateusz staff 331169 Sep 15 12:10 Browser Refresh.sublime-package | |
-rw-r--r-- 1 Mateusz staff 3045 Nov 10 15:18 CloseOtherWindows.sublime-package | |
-rw-r--r-- 1 Mateusz staff 383876 Nov 10 10:31 Color Highlighter.sublime-package | |
-rw-r--r-- 1 Mateusz staff 28291 Nov 30 11:21 Git.sublime-package |
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
Show hidden characters
[ | |
{ | |
"keys": ["super+shift+r"], "command": "browser_refresh", "args": { | |
"auto_save": true, | |
"delay": 0.0, | |
"activate": true, | |
"browsers" : ["chrome"] | |
} | |
}, | |
{ "keys": ["super+h"], "command": "toggle_side_bar" }, |
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
{ | |
"auto_complete_commit_on_tab": true, | |
"binary_file_patterns": | |
[ | |
"*.log", | |
"*.jpg", | |
"*.jpeg", | |
"*.png", | |
"*.gif", | |
"*.ttf", |
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
[user] | |
name = Mateusz Nowakowski | |
email = [email protected] | |
[alias] | |
br = branch | |
co = checkout | |
ci = commit | |
ca = commit --amend | |
rename = commit --amend -m | |
df = diff |