Skip to content

Instantly share code, notes, and snippets.

@imajinyun
Last active July 18, 2018 08:34
Show Gist options
  • Save imajinyun/a2b85f3cfb014587c0d00f7cbf2d7b0f to your computer and use it in GitHub Desktop.
Save imajinyun/a2b85f3cfb014587c0d00f7cbf2d7b0f to your computer and use it in GitHub Desktop.
SublimeTextSettings
{
"always_show_minimap_viewport": true,
"binary_file_patterns":
[
"*.jpg",
"*.jpeg",
"*.png",
"*.gif",
"*.ttf",
"*.tga",
"*.dds",
"*.ico",
"*.eot",
"*.pdf",
"*.swf",
"*.jar",
"*.zip",
"*.md",
"node_modules/",
"resources/",
"public/",
"tmp/",
"vendor/"
],
"bold_folder_labels": true,
"caret_style": "phase",
"close_windows_when_empty": true,
"color_scheme": "Packages/Material Theme/schemes/Material-Theme.tmTheme",
"ensure_newline_at_eof_on_save": true,
"font_face": "Operator Mono",
"font_size": 13,
"highlight_line": true,
"ignored_packages":
[
"Vintage"
],
"indent_guide_options":
[
"draw_normal",
"draw_active"
],
"line_numbers": true,
"material_theme_accent_bright-teal": true,
"material_theme_bold_tab": true,
"material_theme_bullet_tree_indicator": true,
"material_theme_compact_sidebar": true,
"material_theme_contrast_mode": true,
"material_theme_panel_separator": true,
"material_theme_small_statusbar": true,
"material_theme_small_tab": true,
"material_theme_tabs_autowidth": true,
"material_theme_tabs_separator": true,
"overlay_scroll_bars": "enabled",
"phpunit-sublime-terminal": "iTerm",
"tab_size": 4,
"theme": "Material-Theme.sublime-theme",
"translate_tabs_to_spaces": true,
"trim_automatic_white_space": true,
"trim_trailing_white_space_on_save": true,
"use_simple_full_screen": true,
"word_wrap": true
}
@imajinyun
Copy link
Author

SublimeTextSettings

{
    "material-icon-theme.folders.theme": "specific",
    "workbench.iconTheme": "eq-material-theme-icons",
    "files.autoSave": "onFocusChange",
    "editor.fontSize": 13,
    "workbench.colorTheme": "Material Theme",
    "editor.cursorStyle": "line",
    "editor.renderWhitespace": "none",
    "files.associations": {
        "*.styl": "scss",
        "*.php": "php",
        "*.blade.php": "php"
    },
    "html.format.endWithNewline": true,
    "html.format.maxPreserveNewLines": null,
    "blade.format.enable": true,
    "php.validate.executablePath": "/usr/local/bin/php",
    "php.executablePath": "/usr/local/bin/php",
    "beautify.language": {
        "js": {
            "type": [
                "javascript",
                "json"
            ],
            "filename": [
                ".jshintrc",
                ".jsbeautify"
            ]
        },
        "css": [
            "css",
            "scss"
        ],
        "html": [
            "htm",
            "html",
            "blade",
            "blade.php"
        ]
    },
    // "phpcs.ignorePatterns": [
    //     "*/vendor/*",
    //     "*/tests/*"
    // ],
    // "phpcs.executablePath": "/Users/majinyun/.composer/vendor/bin/phpcs",
    // "phpcs.standard": "PSR2",
    "php-cs-fixer.allowRisky": true,
    "php-cs-fixer.executablePath": "/usr/local/bin/php-cs-fixer",
    "terminal.external.osxExec": "iTerm.app",
    "terminal.integrated.fontFamily": "'DejaVu Sans Mono for Powerline', Menlo, Monaco, 'Courier New', monospace",
    "terminal.integrated.fontSize": 13,
    "terminal.integrated.letterSpacing": 1,
    "php-docblocker.author": {
        "name": "imajinyun",
        "email": "imajinyun@163.com"
    },
    "php-docblocker.qualifyClassNames": true,
    "php-docblocker.returnGap": true,
    "php-docblocker.useShortNames": true,
    "files.insertFinalNewline": true,
    "files.trimFinalNewlines": true,
    "files.trimTrailingWhitespace": true,
    "editor.trimAutoWhitespace": true,
    "editor.minimap.enabled": true,
    "materialTheme.fixIconsRunning": false,
    "markdown-preview-enhanced.liveUpdate": true,
    "workbench.colorCustomizations": {
        "activityBarBadge.background": "#00BCD4",
        "list.activeSelectionForeground": "#00BCD4",
        "list.inactiveSelectionForeground": "#00BCD4",
        "list.highlightForeground": "#00BCD4",
        "scrollbarSlider.activeBackground": "#00BCD450",
        "editorSuggestWidget.highlightForeground": "#00BCD4",
        "textLink.foreground": "#00BCD4",
        "progressBar.background": "#00BCD4",
        "pickerGroup.foreground": "#00BCD4",
        "tab.activeBorder": "#00BCD4",
        "notificationLink.foreground": "#00BCD4",
        "editorWidget.resizeBorder": "#00BCD4",
        "editorWidget.border": "#00BCD4",
        "settings.modifiedItemForeground": "#00BCD4",
        "panelTitle.activeBorder": "#00BCD4"
    },
    "materialTheme.accentPrevious": "",
    "php.suggest.basic": false,
    "material-icon-theme.folders.color": "#90a4ae",
    "editor.quickSuggestions": {
        "other": true,
        "comments": false,
        "strings": true
    },
    "window.zoomLevel": 0,
    "sassFormat.indent": 2,
    "[php]": {

    },
    "emmet.triggerExpansionOnTab": true,
    "emmet.showSuggestionsAsSnippets": true,
    "editor.snippetSuggestions": "bottom"
}

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