Last active
August 6, 2020 13:35
-
-
Save syarynovskyi/8908bcc7d126c8332fc9e28564821b88 to your computer and use it in GitHub Desktop.
Sublime config
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
{ | |
"default_encoding": "UTF-8", | |
"enable_tab_scrolling": false, | |
"ensure_newline_at_eof_on_save": true, | |
"file_exclude_patterns": | |
[ | |
"*.pyc", | |
"*.pyo", | |
"*.exe", | |
"*.dll", | |
"*.obj", | |
"*.o", | |
"*.a", | |
"*.lib", | |
"*.so", | |
"*.dylib", | |
"*.ncb", | |
"*.sdf", | |
"*.suo", | |
"*.pdb", | |
"*.idb", | |
".DS_Store", | |
"*.class", | |
"*.psd", | |
"*.db", | |
"*.sublime-workspace" | |
], | |
"folder_exclude_patterns": | |
[ | |
"node_modules", | |
".svn", | |
".git", | |
".hg", | |
"CVS" | |
], | |
"font_size": 12, | |
"ignored_packages": | |
[ | |
"Vintage" | |
], | |
"rulers": | |
[ | |
80, | |
100 | |
], | |
"save_on_focus_lost": true, | |
"scroll_past_end": false, | |
"tab_size": 2, | |
"translate_tabs_to_spaces": true, | |
"trim_trailing_white_space_on_save": true | |
} | |
"installed_packages": | |
[ | |
"A File Icon", | |
"Babel", | |
"Babel Snippets", | |
"BracketHighlighter", | |
"Emmet", | |
"Git", | |
"GitGutter", | |
"Package Control", | |
"SCSS", | |
"SideBarEnhancements", | |
"SublimeLinter", | |
"TypeScript" | |
] | |
alias usebash='source ~/.bash_profile' | |
alias gs='git status' | |
alias gd='git diff' | |
alias gc='git commit' | |
alias gp='git pull -p' | |
alias front='yarn open:src' | |
alias rc='bundle exec rails c' | |
alias rs='bundle exec rails s -p 3000 -b 0.0.0.0' | |
alias ra='bundle exec rails s -p 3004 -b 127.0.0.1' | |
alias rp='bundle exec rails s -p 3001 -b 127.0.0.1' | |
alias rb='bundle exec rails s -p 3005' | |
alias rshop='bundle exec rails s -p 4000' | |
alias side='bundle exec sidekiq -C config/sidekiq.yml' | |
alias migrate='bundle exec rake db:migrate; bundle exec rake db:migrate RAILS_ENV=test' | |
alias fuckzoom='lsof -i :19421' | |
alias rubo='git status | xargs ls -1 2>/dev/null | grep '\.rb$' | xargs rubocop' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment