1
0
Fork 0

Git aliases, submlime configs

This commit is contained in:
Gregory Eremin 2013-03-13 12:51:31 +04:00
parent eacc58c335
commit 75da7531a5
5 changed files with 69 additions and 31 deletions

View File

@ -1,5 +1,4 @@
AwesomePrint.defaults = {
indent: -2,
index: false,
raw: true
index: false
}

View File

@ -4,6 +4,6 @@ require 'irb/ext/save-history'
require 'rubygems'
require 'ap'
IRB.conf[:SAVE_HISTORY] = 100
IRB.conf[:SAVE_HISTORY] = 10000
IRB.conf[:AUTO_INDENT] = true
AwesomePrint.irb!

View File

@ -1,21 +1,39 @@
{
// Themes, Colors and Fonts
"theme": "Soda Dark.sublime-theme",
"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_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,
"ignored_packages": ["Vintage"],
"rulers": [120],
"line_padding_bottom": 1,
"line_padding_top": 3,
"rulers": [120],
"tab_size": 2,
"theme": "Soda Dark.sublime-theme",
"translate_tabs_to_spaces": true,
"tree_animation_enabled": false,
"trim_trailing_white_space_on_save": true,
"folder_exclude_patterns": [".git", ".bundle", ".sass-cache"],
"file_exclude_patterns": [".DS_Store"]
"gutter": true,
"line_numbers": true,
"fold_buttons": false,
"draw_minimap_border": false,
"highlight_modified_tabs": true,
"close_windows_when_empty": false,
// Bullshit
"ignored_packages": ["Vintage"],
"file_exclude_patterns": [".DS_Store", "*.sublime-*"],
"folder_exclude_patterns": [".git", ".bundle", ".sass-cache"]
}

View File

@ -1,21 +1,39 @@
{
// Themes, Colors and Fonts
"theme": "Soda Light.sublime-theme",
"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_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,
"ignored_packages": ["Vintage"],
"rulers": [120],
"line_padding_bottom": 1,
"line_padding_top": 3,
"rulers": [120],
"tab_size": 2,
"theme": "Soda Light.sublime-theme",
"translate_tabs_to_spaces": true,
"tree_animation_enabled": false,
"trim_trailing_white_space_on_save": true,
"folder_exclude_patterns": [".git", ".bundle", ".sass-cache"],
"file_exclude_patterns": [".DS_Store"]
"gutter": true,
"line_numbers": true,
"fold_buttons": false,
"draw_minimap_border": false,
"highlight_modified_tabs": true,
"close_windows_when_empty": false,
// Bullshit
"ignored_packages": ["Vintage"],
"file_exclude_patterns": [".DS_Store", "*.sublime-*"],
"folder_exclude_patterns": [".git", ".bundle", ".sass-cache"]
}

View File

@ -20,3 +20,6 @@ compinit
# load every completion after autocomplete loads
# for config_file ($ZSH/**/completion.sh) source $config_file
### Added by the Heroku Toolbelt
export PATH="/usr/local/heroku/bin:$PATH"