Chon · 翀

The Neverland Blog

Text Editor

Visual Studio Code

Settings

{
    "git.enabled": false,
    "breadcrumbs.enabled": false,
    "keyboard.touchbar.enabled": false,
    "security.workspace.trust.enabled": false,
    "security.workspace.trust.untrustedFiles": "open",
    "workbench.layoutControl.enabled": false,
    "workbench.editor.untitled.hint": "hidden",
    "editor.folding": false,
    "editor.minimap.enabled": false,
    "editor.copyWithSyntaxHighlighting": false,
    "editor.unicodeHighlight.ambiguousCharacters": false,
    "editor.renderWhitespace": "all",
    "workbench.startupEditor": "none"
}

Sublime Text

Install

http://www.sublimetext.com/3

Package Control

https://packagecontrol.io/installation

Themes

$ cd "~/Library/Application Support/Sublime Text 3/Packages"
$ git clone "https://github.com/kkga/spacegray.git" "Theme - Spacegray"
$ git clone "https://github.com/EleazarCrusader/nexus-theme.git" "Theme - Nexus"
$ git clone "https://github.com/kenwheeler/brogrammer-theme.git" "Theme - Brogrammer"

Preferences

Settings - User

{
    "color_scheme": "Packages/Theme - Spacegray/base16-eighties.dark.tmTheme",
    "theme": "Spacegray Eighties.sublime-theme",
    "caret_style": "solid",
    "highlight_line": true,
    "draw_white_space": "all",
    "font_size": 12.4,
    "line_padding_top": 1.5,
    "line_padding_bottom": 1.5,
    "fold_buttons": false,
    "margin": 0,
    "bold_folder_labels": true,
    "show_encoding": true,
    "show_line_endings": true,
    "word_wrap": false,
    "open_files_in_new_window": false,
    "ensure_newline_at_eof_on_save": false,
    "trim_trailing_white_space_on_save": false,
    "index_files": false
}

Key Bingdings - User

[
    { "keys": [ "home" ], "command": "move_to", "args": { "to": "bol" } },
    { "keys": [ "end" ], "command": "move_to", "args": { "to": "eol" } },
    { "keys": [ "shift+home" ], "command": "move_to", "args": { "to": "bol", "extend": true } },
    { "keys": [ "shift+end" ], "command": "move_to", "args": { "to": "eol", "extend": true } },
    { "keys": [ "ctrl+home" ], "command": "move_to", "args": { "to": "bof" } },
    { "keys": [ "ctrl+end" ], "command": "move_to", "args": { "to": "eof" } },
    { "keys": [ "ctrl+shift+home" ], "command": "move_to", "args": { "to": "bof", "extend": true } },
    { "keys": [ "ctrl+shift+end" ], "command": "move_to", "args": { "to": "eof", "extend": true } },
    { "keys": [ "j", "j" ], "command": "_enter_normal_mode", "args": { "mode": "mode_insert" }, "context": [ { "key": "vi_insert_mode_aware" } ] }
]

Packages

  • Emmet
  • DocBlockr
  • FileDiffs
  • Pretty JSON
  • SideBarEnhancements
  • Markdown Preview
  • jQuery
  • LESS
  • Vintageous