Skip to content

Instantly share code, notes, and snippets.

@rsms
Created February 17, 2022 17:45
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 rsms/c55b3975d27acae555cb2290438bfb7b to your computer and use it in GitHub Desktop.
Save rsms/c55b3975d27acae555cb2290438bfb7b to your computer and use it in GitHub Desktop.
My Sublime Text config
{
"hardware_acceleration": "opengl",
"atomic_save": false,
"auto_complete": false,
"auto_complete_commit_on_tab": true,
"show_definitions": false,
"binary_file_patterns":
[
"node_modules/**",
"deps/**",
"out/**",
"_archive/**",
".*"
],
"bold_folder_labels": true,
"caret_style": "smooth",
"draw_indent_guides": false,
"file_exclude_patterns":
[
"*.pyc",
"*.pyo",
"*.exe",
"*.dll",
"*.obj",
"*.o",
"*.a",
"*.lib",
"*.so",
"*.dylib",
"*.ncb",
"*.sdf",
"*.suo",
"*.pdb",
"*.idb",
".DS_Store"
],
"fold_buttons": false,
"font_face": "JetBrains Mono",
"font_options":
[
"no_calt"
],
"font_size": 15,
"gutter": true,
"highlight_line": false,
"highlight_modified_tabs": true,
"ignored_packages":
[
"R",
"Vintage",
],
"indent_to_bracket": false,
"line_padding_bottom": 1,
"line_padding_top": 0,
"open_files_in_new_window": false,
"rulers":
[
95
],
"save_on_focus_lost": false,
"scroll_past_end": true,
"scroll_speed": 3.0, // when using e.g. goto line or meta-G
"shell_environment": true,
"show_full_path": true,
"show_git_status": false,
"show_tab_close_buttons": false,
"tab_completion": true,
"tab_size": 2,
"theme": "rsms-adaptive.sublime-theme",
"color_scheme": "rsms-theme/rsms-dark.sublime-color-scheme",
"translate_tabs_to_spaces": true,
"trim_automatic_white_space": true,
"trim_trailing_white_space_on_save": true,
// "file_tab_style": "square",
"ui_scale": 1.0,
"word_wrap": true,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment