Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
d2s committed Jul 28, 2011
0 parents commit 99e9572
Show file tree
Hide file tree
Showing 5 changed files with 55 additions and 0 deletions.
32 changes: 32 additions & 0 deletions Base File.sublime-settings
@@ -0,0 +1,32 @@
{
// Valid values are "smooth", "blink", "wide" and "solid". jahas
"caret_style": "smooth",
"color_scheme": "Packages/Color Scheme - Default/All Hallow's Eve.tmTheme",
"draw_white_space": "all",
"match_brackets_angle": true,
"font_face": "Consolas",
"font_options":
[
"subpixel_antialias"
],
"font_size": 16,
"rulers":
[
120
],
// Tab related settings
"tab_completion": true,
"tab_size": 2,
"translate_tabs_to_spaces": true,
"use_tab_stops": true,
// EOF related settings
"ensure_newline_at_eof_on_save": true,
"trim_trailing_white_space_on_save": true,
// Other settings
"word_wrap": false,
"highlight_line": true,
"draw_minimap_border": false,
// gutter is the list of line numbers at the left side
"gutter": true
//"tab_completion": true
}
2 changes: 2 additions & 0 deletions Default (Linux).sublime-keymap
@@ -0,0 +1,2 @@
[
]
8 changes: 8 additions & 0 deletions Default (OSX).sublime-keymap
@@ -0,0 +1,8 @@
/* Added keys to got to different groups */
/* originally from https://github.com/brendandean/Sublime-Text-2-Configuration */
[
{ "keys": ["ctrl+alt+1"], "command": "focus_group", "args": { "group": 0 } },
{ "keys": ["ctrl+alt+2"], "command": "focus_group", "args": { "group": 1 } },
{ "keys": ["ctrl+alt+3"], "command": "focus_group", "args": { "group": 2 } },
{ "keys": ["ctrl+alt+4"], "command": "focus_group", "args": { "group": 3 } }
]
2 changes: 2 additions & 0 deletions Default (Windows).sublime-keymap
@@ -0,0 +1,2 @@
[
]
11 changes: 11 additions & 0 deletions Global.sublime-settings
@@ -0,0 +1,11 @@
// Place user-specific overrides in this file, to ensure they're preserved
// when upgrading
{
// Excludes
"folder_exclude_patterns": [".bundle", ".git", ".sass-cache", "*.esproj"],
"file_exclude_patterns": ["*.png", "*.gif", "*.jpg", "*.jpeg", ".DS_Store", "Gemfile.lock"],
// Visual style
"theme": "Soda Dark.sublime-theme",
//"show_tab_close_buttons": false,
"mouse_wheel_switches_tabs": false
}

0 comments on commit 99e9572

Please sign in to comment.