Skip to content

Instantly share code, notes, and snippets.

@shawncrigger
Last active November 25, 2020 18:19
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 shawncrigger/a33fc481108cfe3b2e1b15cd1f369f9e to your computer and use it in GitHub Desktop.
Save shawncrigger/a33fc481108cfe3b2e1b15cd1f369f9e to your computer and use it in GitHub Desktop.
This is my main preferences file for sublime, it has modifications to prevent beach balling on large files
{
"always_show_minimap_viewport": true,
"auto_complete_cycle": true,
"auto_complete_size_limit": 2097152,
"auto_complete_triggers":
[
{
"characters": "<",
"selector": "text.html"
}
],
"bold_folder_labels": true,
"color_scheme": "Packages/Monokai Extended/Monokai Extended.tmTheme",
"default_encoding": "UTF-8",
"default_line_ending": "unix",
"detect_indentation": true,
"draw_white_space": "all",
"ensure_newline_at_eof_on_save": false,
"file_exclude_patterns":
[
".DS_Store",
"Desktop.ini",
"*.pyc",
"._*",
"Thumbs.db",
".Spotlight-V100",
".Trashes"
],
"folder_exclude_patterns":
[
".git",
"node_modules"
],
"font_face": "Monaco",
"font_size": 14,
"highlight_modified_tabs": true,
"hot_exit": true,
"ignored_packages":
[
"ASP",
"Clojure",
"D",
"Go",
"Graphviz",
"Groovy",
"Haskell",
"Java",
"LaTeX",
"Lisp",
"Lua",
"Markdown Extended",
"Matlab",
"Objective-C",
"OCaml",
"Perl",
"R",
"RestructuredText",
"Ruby",
"Scala",
"sublime-markdown-extended",
"Vintage"
],
"indent_guide_options":
[
"draw_active"
],
"index_exclude_patterns":
[
"node_modules/*",
"node_modules",
"v1/api/index.php",
"v1/js/app.php",
"*.log"
],
"index_files": true,
"line_padding_bottom": 5,
"match_brackets": true,
"match_brackets_angle": true,
"open_files_in_new_window": false,
"remember_open_files": true,
"rulers":
[
80
],
"show_encoding": true,
"show_git_status": false,
"show_line_endings": true,
"tab_size": 3,
"theme": "Soda Dark 3.sublime-theme",
"translate_tabs_to_spaces": true,
"trim_trailing_white_space_on_save": true,
"word_separators": "./\\()\"'-:,.;<>~!@#%^&*|+=[]{}`~?",
"word_wrap": true
}
{
"always_show_minimap_viewport": true,
"auto_complete_cycle": true,
"auto_complete_size_limit": 2097152,
"auto_complete_triggers":
[
{
"characters": "<",
"selector": "text.html"
}
],
"bold_folder_labels": true,
"color_scheme": "Packages/Monokai Extended/Monokai Extended.tmTheme",
"default_encoding": "UTF-8",
"default_line_ending": "unix",
"detect_indentation": true,
"draw_white_space": "all",
"ensure_newline_at_eof_on_save": false,
"file_exclude_patterns":
[
".DS_Store",
"Desktop.ini",
"*.pyc",
"._*",
"Thumbs.db",
".Spotlight-V100",
".Trashes"
],
"folder_exclude_patterns":
[
".git",
"node_modules"
],
"font_face": "Monaco",
"font_size": 14,
"highlight_modified_tabs": true,
"hot_exit": true,
"ignored_packages":
[
"ASP",
"Clojure",
"D",
"Go",
"Graphviz",
"Groovy",
"Haskell",
"Java",
"LaTeX",
"Lisp",
"Lua",
"Markdown Extended",
"Matlab",
"Objective-C",
"OCaml",
"Perl",
"R",
"RestructuredText",
"Ruby",
"Scala",
"sublime-markdown-extended",
"Vintage"
],
"indent_guide_options":
[
"draw_active"
],
"index_exclude_patterns":
[
"node_modules/*",
"node_modules",
"v1/api/index.php",
"v1/js/app.php",
"*.log"
],
"index_files": true,
"line_padding_bottom": 5,
"match_brackets": true,
"match_brackets_angle": true,
"open_files_in_new_window": false,
"remember_open_files": true,
"rulers":
[
80
],
"show_encoding": true,
"show_git_status": false,
"show_line_endings": true,
"tab_size": 3,
"theme": "Soda Dark 3.sublime-theme",
"translate_tabs_to_spaces": true,
"trim_trailing_white_space_on_save": true,
"word_separators": "./\\()\"'-:,.;<>~!@#%^&*|+=[]{}`~?",
"word_wrap": true
}
@shawncrigger
Copy link
Author

This file is located at, but you can edit it in Sublime > Settings and it will be on the Right Side.

My problem was it was trying to parse 130k files for code completion so I skipped those. Give it a whirl and see how it works

Also Git Status was giving me problems on those files so I disabled the git status.

~/Library/Application Support/Sublime Text 3/Packages/User/Preferences.sublime-settings

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment