Skip to content

Instantly share code, notes, and snippets.

@cofemei
Last active January 2, 2016 18:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cofemei/8347351 to your computer and use it in GitHub Desktop.
Save cofemei/8347351 to your computer and use it in GitHub Desktop.
./vimrc
set nocompatible
filetype off
filetype plugin indent off
set runtimepath+=$GOROOT/misc/vim
set encoding=utf-8
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
set tabstop=4
set shiftwidth=4
set expandtab
set number
" let Vundle manage Vundle
" " required!
Bundle 'gmarik/vundle'
Bundle 'https://github.com/scrooloose/nerdtree.git'
Bundle 'https://github.com/mileszs/ack.vim'
Bundle 'http://github.com/tomtom/tcomment_vim'
Bundle 'https://github.com/moll/vim-node'
Bundle 'https://github.com/othree/html5.vim'
Bundle 'https://github.com/jelera/vim-javascript-syntax'
Bundle 'https://github.com/dandorman/vim-colors'
Bundle 'nathanaelkane/vim-indent-guides'
filetype plugin indent on " required!
syntax on
let mapleader=","
let g:NERDTreeWinPos = "right"
nmap <F3> :NERDTreeToggle<CR>
nmap <F4> :TComment<CR>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment