Skip to content

Instantly share code, notes, and snippets.

@mgramin
Last active August 29, 2015 14:05
Show Gist options
  • Select an option

  • Save mgramin/f2841f2c9d52b17f94e2 to your computer and use it in GitHub Desktop.

Select an option

Save mgramin/f2841f2c9d52b17f94e2 to your computer and use it in GitHub Desktop.
call plug#begin('~/.vim/plugged')
Plug 'junegunn/seoul256.vim'
Plug 'junegunn/vim-easy-align'
" On-demand loading
Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' }
Plug 'tpope/vim-fireplace', { 'for': 'clojure' }
"
" " Using git URL
Plug 'https://github.com/junegunn/vim-github-dashboard.git'
Plug 'https://github.com/moll/vim-node.git'
Plug 'https://github.com/myhere/vim-nodejs-complete.git'
"
" " Plugin options
Plug 'nsf/gocode', { 'tag': 'go.weekly.2012-03-13', 'rtp': 'vim' }
"
" " Plugin outside ~/.vim/plugged with post-update hook
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': 'yes \| ./install' }
"
" " Unmanaged plugin (manually installed and updated)
"Plug '~/my-prototype-plugin'
"
call plug#end()
colo seoul256
set background=dark
" size of a hard tabstop
set tabstop=2
"
" " size of an "indent"
set shiftwidth=2
"
" " a combination of spaces and tabs are used to simulate tab stops at a width
" " other than the (hard)tabstop
set softtabstop=2
" make "tab" insert indents instead of tabs at the beginning of a line
set smarttab
"
" " always uses spaces instead of tab characters
set expandtab
set number
filetype plugin on
set omnifunc=javascriptcomplete#CompleteJS
set nowrap
set textwidth=0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment