Skip to content

Instantly share code, notes, and snippets.

@fzero
Last active December 18, 2015 15:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fzero/5807435 to your computer and use it in GitHub Desktop.
Save fzero/5807435 to your computer and use it in GitHub Desktop.
My Sublime Text 2 user configs.
{
"bold_folder_labels": true,
"color_scheme": "Packages/Color Scheme - Default/Twilight.tmTheme",
"ensure_newline_at_eof_on_save": true,
"font_face": "Fantasque Sans Mono", // http://openfontlibrary.org/en/font/fantasque-sans-mono
"font_size": 14.0,
"highlight_line": true,
"ignored_packages":
[
],
"line_padding_bottom": 1,
"line_padding_top": 0,
"margin": 0,
"rulers":
[
80
],
"tab_size": 2,
"translate_tabs_to_spaces": true,
"trim_trailing_white_space_on_save": true,
"use_simple_full_screen": true,
"vintage_start_in_command_mode": true,
"scroll_past_end": true,
"word_wrap": true
}
[
{
"keys": ["f1"],
"command": "dired",
"args": {
"immediate": true,
"single_pane": true,
"project": true,
// "other_group": "left"
}
},
{
"keys": ["alt+w"],
"command": "toggle_setting",
"args":
{
"setting": "word_wrap"
}
}
]
// Go-specific configs
{
"tab_size": 2, // I prefer two spaces - sue me, gofmt!
"translate_tabs_to_spaces": false // ...but they're really tabs.
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment