-
Vundle.vim
-
AutoTag
-
Valloric/YouCompleteMe
-
Yggdroot/indentLine
-
nerdtree
-
vim-nerdtree-tabs
-
taglist.vim
-
vim-golang
-
syntastic
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# coding=utf-8 | |
# Filename: cleanpyc.py | |
# Date:2011-03-26 | |
import os | |
import fnmatch | |
import sys | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#BEGIN | |
[wildcard] | |
*://5i01.com/* | |
*://*.android.com/* | |
*://androidexample.com/* | |
*://*.appspot.com/* | |
*://*.asana.com/* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
syntax on | |
set ruler | |
set showcmd | |
set tabstop=4 | |
set shiftwidth=4 | |
set softtabstop=4 | |
set expandtab | |
set nu | |
set hlsearch | |
set incsearch |