Created
November 29, 2014 12:34
-
-
Save keizo042/aefa55f600c350d38d4d to your computer and use it in GitHub Desktop.
vim plugin collision xml.vim typescript.vim
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
"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