Git aliases, submlime configs
This commit is contained in:
parent
eacc58c335
commit
75da7531a5
|
@ -1,5 +1,4 @@
|
||||||
AwesomePrint.defaults = {
|
AwesomePrint.defaults = {
|
||||||
indent: -2,
|
indent: -2,
|
||||||
index: false,
|
index: false
|
||||||
raw: true
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,6 +4,6 @@ require 'irb/ext/save-history'
|
||||||
require 'rubygems'
|
require 'rubygems'
|
||||||
require 'ap'
|
require 'ap'
|
||||||
|
|
||||||
IRB.conf[:SAVE_HISTORY] = 100
|
IRB.conf[:SAVE_HISTORY] = 10000
|
||||||
IRB.conf[:AUTO_INDENT] = true
|
IRB.conf[:AUTO_INDENT] = true
|
||||||
AwesomePrint.irb!
|
AwesomePrint.irb!
|
||||||
|
|
|
@ -1,21 +1,39 @@
|
||||||
{
|
{
|
||||||
|
// Themes, Colors and Fonts
|
||||||
|
"theme": "Soda Dark.sublime-theme",
|
||||||
"color_scheme": "Packages/Tomorrow Color Schemes/Tomorrow-Night.tmTheme",
|
"color_scheme": "Packages/Tomorrow Color Schemes/Tomorrow-Night.tmTheme",
|
||||||
"default_line_ending": "unix",
|
|
||||||
"drag_text": false,
|
|
||||||
"ensure_newline_at_eof_on_save": true,
|
|
||||||
"fallback_encoding": "Cyrillic (Windows 1251)",
|
|
||||||
"font_face": "Source Code Pro",
|
"font_face": "Source Code Pro",
|
||||||
"font_size": 14.0,
|
"font_size": 12.0,
|
||||||
|
"font_options": ["subpixel_antialias", "no_bold", "no_italic"],
|
||||||
|
|
||||||
|
// Behavior
|
||||||
|
"drag_text": false,
|
||||||
|
"highlight_modified_tabs": true,
|
||||||
|
"close_windows_when_empty": false,
|
||||||
|
"tree_animation_enabled": false,
|
||||||
|
|
||||||
|
// Text & Code
|
||||||
|
"fallback_encoding": "Cyrillic (Windows 1251)",
|
||||||
|
"default_line_ending": "unix",
|
||||||
|
"translate_tabs_to_spaces": true,
|
||||||
|
"ensure_newline_at_eof_on_save": true,
|
||||||
|
"trim_trailing_white_space_on_save": true,
|
||||||
|
"tab_size": 2,
|
||||||
|
|
||||||
|
// Editor
|
||||||
"highlight_line": true,
|
"highlight_line": true,
|
||||||
"ignored_packages": ["Vintage"],
|
"rulers": [120],
|
||||||
"line_padding_bottom": 1,
|
"line_padding_bottom": 1,
|
||||||
"line_padding_top": 3,
|
"line_padding_top": 3,
|
||||||
"rulers": [120],
|
"gutter": true,
|
||||||
"tab_size": 2,
|
"line_numbers": true,
|
||||||
"theme": "Soda Dark.sublime-theme",
|
"fold_buttons": false,
|
||||||
"translate_tabs_to_spaces": true,
|
"draw_minimap_border": false,
|
||||||
"tree_animation_enabled": false,
|
"highlight_modified_tabs": true,
|
||||||
"trim_trailing_white_space_on_save": true,
|
"close_windows_when_empty": false,
|
||||||
"folder_exclude_patterns": [".git", ".bundle", ".sass-cache"],
|
|
||||||
"file_exclude_patterns": [".DS_Store"]
|
// Bullshit
|
||||||
|
"ignored_packages": ["Vintage"],
|
||||||
|
"file_exclude_patterns": [".DS_Store", "*.sublime-*"],
|
||||||
|
"folder_exclude_patterns": [".git", ".bundle", ".sass-cache"]
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,21 +1,39 @@
|
||||||
{
|
{
|
||||||
|
// Themes, Colors and Fonts
|
||||||
|
"theme": "Soda Light.sublime-theme",
|
||||||
"color_scheme": "Packages/Tomorrow Color Schemes/Tomorrow.tmTheme",
|
"color_scheme": "Packages/Tomorrow Color Schemes/Tomorrow.tmTheme",
|
||||||
"default_line_ending": "unix",
|
|
||||||
"drag_text": false,
|
|
||||||
"ensure_newline_at_eof_on_save": true,
|
|
||||||
"fallback_encoding": "Cyrillic (Windows 1251)",
|
|
||||||
"font_face": "Source Code Pro",
|
"font_face": "Source Code Pro",
|
||||||
"font_size": 14.0,
|
"font_size": 12.0,
|
||||||
|
"font_options": ["subpixel_antialias", "no_bold", "no_italic"],
|
||||||
|
|
||||||
|
// Behavior
|
||||||
|
"drag_text": false,
|
||||||
|
"highlight_modified_tabs": true,
|
||||||
|
"close_windows_when_empty": false,
|
||||||
|
"tree_animation_enabled": false,
|
||||||
|
|
||||||
|
// Text & Code
|
||||||
|
"fallback_encoding": "Cyrillic (Windows 1251)",
|
||||||
|
"default_line_ending": "unix",
|
||||||
|
"translate_tabs_to_spaces": true,
|
||||||
|
"ensure_newline_at_eof_on_save": true,
|
||||||
|
"trim_trailing_white_space_on_save": true,
|
||||||
|
"tab_size": 2,
|
||||||
|
|
||||||
|
// Editor
|
||||||
"highlight_line": true,
|
"highlight_line": true,
|
||||||
"ignored_packages": ["Vintage"],
|
"rulers": [120],
|
||||||
"line_padding_bottom": 1,
|
"line_padding_bottom": 1,
|
||||||
"line_padding_top": 3,
|
"line_padding_top": 3,
|
||||||
"rulers": [120],
|
"gutter": true,
|
||||||
"tab_size": 2,
|
"line_numbers": true,
|
||||||
"theme": "Soda Light.sublime-theme",
|
"fold_buttons": false,
|
||||||
"translate_tabs_to_spaces": true,
|
"draw_minimap_border": false,
|
||||||
"tree_animation_enabled": false,
|
"highlight_modified_tabs": true,
|
||||||
"trim_trailing_white_space_on_save": true,
|
"close_windows_when_empty": false,
|
||||||
"folder_exclude_patterns": [".git", ".bundle", ".sass-cache"],
|
|
||||||
"file_exclude_patterns": [".DS_Store"]
|
// Bullshit
|
||||||
|
"ignored_packages": ["Vintage"],
|
||||||
|
"file_exclude_patterns": [".DS_Store", "*.sublime-*"],
|
||||||
|
"folder_exclude_patterns": [".git", ".bundle", ".sass-cache"]
|
||||||
}
|
}
|
||||||
|
|
|
@ -20,3 +20,6 @@ compinit
|
||||||
|
|
||||||
# load every completion after autocomplete loads
|
# load every completion after autocomplete loads
|
||||||
# for config_file ($ZSH/**/completion.sh) source $config_file
|
# for config_file ($ZSH/**/completion.sh) source $config_file
|
||||||
|
|
||||||
|
### Added by the Heroku Toolbelt
|
||||||
|
export PATH="/usr/local/heroku/bin:$PATH"
|
||||||
|
|
Loading…
Reference in New Issue