Skip to content

Instantly share code, notes, and snippets.

@dortamiguel
Last active June 7, 2021 08:49
Show Gist options
  • Save dortamiguel/9788ed735aa938a25d5320a9f95984e0 to your computer and use it in GitHub Desktop.
Save dortamiguel/9788ed735aa938a25d5320a9f95984e0 to your computer and use it in GitHub Desktop.
sublime text setup
{
  "font_size": 18,
  "theme": "Adaptive.sublime-theme",
  "color_scheme": "Packages/Color Scheme - Default/Mariana.sublime-color-scheme",
  "font_face": "SF Mono",
  "always_show_minimap_viewport": false,
  "animation_enabled": false,
  "caret_style": "phase",
  "default_line_ending": "unix",
  "drag_text": false,
  "draw_white_space": "selection",
  "enable_tab_scrolling": false,
  "ensure_newline_at_eof_on_save": true,
  "fade_fold_buttons": false,
  "highlight_line": true,
  "ignored_packages": [
    "Rust",
    "Vintage"
  ],
  "indent_guide_options": [
    "draw_normal",
    "draw_active"
  ],
  "jsoncomma_on_save": true,
  "open_files_in_new_window": false,
  "overlay_scroll_bars": "disabled",
  "rulers": [
    120
  ],
  "save_on_focus_lost": true,
  "show_full_path": true,
  "tree_animation_enabled": false,
  "trim_trailing_white_space_on_save": true,
  "word_wrap": true,
  "show_definitions": false,
  "bold_folder_labels": true,
  "file_exclude_patterns": [
    "*.pyc",
    "*.pyo",
    "*.exe",
    "*.dll",
    "*.obj",
    "*.o",
    "*.a",
    "*.lib",
    "*.so",
    "*.ncb",
    "*.sdf",
    "*.suo",
    "*.pdb",
    "*.idb",
    ".DS_Store",
    ".directory",
    "desktop.ini",
    "*.class",
    "*.psd",
    "*.db",
    "*.sublime-workspace"
  ],
  "binary_file_patterns": [
    "*.jpg",
    "*.jpeg",
    "*.png",
    "*.gif",
    "*.ttf",
    "*.tga",
    "*.dds",
    "*.ico",
    "*.eot",
    "*.pdf",
    "*.swf",
    "*.jar",
    "*.zip",
    "*.log",
    "*.csv",
    "*.pyc",
    "*.gz",
    "node_modules/**",
    "build/**"
  ]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment