Skip to content

Instantly share code, notes, and snippets.

@allenhwkim
Last active December 4, 2019 07:17
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save allenhwkim/3bc8ce06bd8fd2e0aeaf9d261e9dd479 to your computer and use it in GitHub Desktop.
Save allenhwkim/3bc8ce06bd8fd2e0aeaf9d261e9dd479 to your computer and use it in GitHub Desktop.
Sublime3 For TypeScript/Vim/Terminal User Settings
  • Install Markdown Preview

  • Install Vim Binding

  • Install Typescript Package

  • Install Terminal

    • How To Open Sublime From Terminal
      • $ ln -s /Applications/Sublime\ Text.app/Contents/SharedSupport/bin/subl /usr/local/bin/sublime
      • $ sublime .
    • Cmd-Shift-P, Install Package
    • Terminal
    • Ctrl-(alt)-Shift-t to open a terminal
      • Preferences > Package Settings > Terminal > Settings – User

        ```
        {
          "terminal": "iTerm2-v3.sh",
          "parameters": ["--open-in-tab"]
        }
        ```
        
  • User Settings

    • Preference > Settings
    {
      "ignored_packages":[],
      "folder_exclude_patterns": [
        "build",
        "dist",
        "node_modules",
        ".svn",
        ".git",
        ".hg",
        "CVS"
      ],
      "file_exclude_patterns": [
        "*.pyc", "*.pyo", "*.exe", "*.dll", "*.obj","*.o", "*.a", "*.lib", "*.so", "*.dylib", "*.ncb", "*.sdf", "*.suo", "*.pdb", "*.idb", ".DS_Store", "*.class", "*.psd", "*.db", "*.sublime-workspace"
      ],
      "binary_file_patterns": [
        "generated/*", "*.tbz2", "*.gzip", "*.jpg", "*.jpeg", "*.png", "*.gif", "*.ttf", "*.tga", "*.dds", "*.ico", "*.eot", "*.pdf", "*.swf", "*.jar", "*.zip"
      ],
      "tab_size": 2,
      "translate_tabs_to_spaces": true,
    }
    
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment