Skip to content

Instantly share code, notes, and snippets.

@vim13
Created December 29, 2015 15:45
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 vim13/7ac9d6e0d2d77cccdab6 to your computer and use it in GitHub Desktop.
Save vim13/7ac9d6e0d2d77cccdab6 to your computer and use it in GitHub Desktop.
my .vimrc
syntax enable
set number
colorscheme desert
" NeoBundle --------------------------
if 0 | endif
filetype off
if has('vim_starting')
if &compatible
set nocompatible " Be iMproved
endif
set runtimepath+=~/.vim/bundle/neobundle.vim
endif
call neobundle#begin(expand('~/.vim/bundle/'))
" originalrepos on github
NeoBundle 'Shougo/neobundle.vim'
NeoBundle "sudar/vim-arduino-syntax"
""NeoBundle 'https://bitbucket.org/kovisoft/slimv'
call neobundle#end()
filetype plugin indent on " required!
filetype indent on
syntax on
NeoBundleCheck
"------------------------
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment