工具(Sublime Text | Vim等) | 文档 - joyocaowei/joyocaowei.github.io GitHub Wiki

科学上网

shadowsocks + Vultr

Android APK

网络工具和文档

  1. http://asciiflow.com/
  2. http://devdocs.io/
  3. http://www.tutorialspoint.com/
  4. http://hackr.io/

Sublime Text

配置文件

Preferences -> Settings – User
{
    "color_scheme": "Packages/Monokai Extended/Monokai Extended Bright.tmTheme",
    "draw_white_space": "all",
    //[A typeface designed for source code](https://github.com/chrissimpkins/Hack)
    "font_face": "Hack",
    "font_size": 13,
    "highlight_line": true,
    "ignored_packages":
    [
        "Vintage"
    ],
    "tab_size": 4,
    "translate_tabs_to_spaces": true,
    "trim_trailing_white_space_on_save": true,
    "word_wrap": true,
    "wrap_width": 100
}

Preferences -> Key Bindings – User

[
    {"keys": ["ctrl+shift+f"], "command": "reindent" , "args": {"single_line": false}}
]

快捷键(Keyboard Shortcuts)

Sublime Text 全程指南

Keyboard Shortcuts - Windows/Linux

Vim

syntax on "打开语法亮度
set number "显示行号
set nocompatible
set hlsearch "高量搜索
colorscheme desert
set autoindent "把当前行的对起格式应用到下一行
set smartindent "智能的选择对齐方式
set tabstop=4 "设置制表符为四个空格 
set shiftwidth=4 "将换行自动缩进设置成4个空格
set expandtab "空格代替制表符
filetype plugin indent on 
set pastetoggle=<F4> "这样复制的时候格式不会变乱
set noai