Skip to content

Instantly share code, notes, and snippets.

View Windsooon's full-sized avatar

Windson yang Windsooon

View GitHub Profile
Bundle 'Valloric/YouCompleteMe'
colorscheme molokai
execute pathogen#infect()
filetype plugin indent on
set hlsearch
set guifont=Monaco:h18
set nocompatible "关闭vi兼容
autocmd vimenter * NERDTree "自动开启nerdtree
map <C-n>: <plug>NERDTreeToggle<CR>
set vb t_vb= "去掉提示音
@Windsooon
Windsooon / upload.js
Created March 29, 2016 11:11
Qiniu upload
//直传时正常,formData 包含文件仪器其他上传参数
$.ajax({
url: "https://up.qbox.me",
type: "POST",
data: formData,
datatype: "json",
cache: false,
processData: false,
contentType: false,
})