Skip to content

Instantly share code, notes, and snippets.

@keizo042
Created November 29, 2014 12:34
Show Gist options
  • Save keizo042/aefa55f600c350d38d4d to your computer and use it in GitHub Desktop.
Save keizo042/aefa55f600c350d38d4d to your computer and use it in GitHub Desktop.
vim plugin collision xml.vim typescript.vim
"keizo'vimrc
if has('vim_starting')
set nocompatible " Be iMproved
set runtimepath+=~/.vim/bundle/neobundle.vim/
endif
filetype indent off
call neobundle#begin(expand('~/.vim/bundle/'))
" Let NeoBundle manage NeoBundle
NeoBundleFetch 'Shougo/neobundle.vim'
"TypeScript
NeoBundleLazy 'leafgarland/typescript-vim',{
\'autoload' : {
\ 'filetypes' : ['typescript'],
\ },
\ }
NeoBundleLazy 'othree/xml.vim', {
\ 'autoload' : {
\ 'filetypes' : 'xml',
\ }
\ }
call neobundle#end()
filetype plugin indent on " Required!
NeoBundleCheck
syntax on
set background=dark
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment