Last active
August 7, 2016 21:16
-
-
Save duckpuppy/687246db7c17f92c55b0da721acc8e4b to your computer and use it in GitHub Desktop.
This file contains 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
if &compatible | |
set nocompatible " Be iMproved | |
endif | |
set runtimepath^=~/.vim/bundle/neobundle.vim/ | |
call neobundle#begin(expand('~/.vim/bundle/')) | |
NeoBundleFetch 'Shougo/neobundle.vim' | |
NeoBundle "reedes/vim-lexical" | |
NeoBundle "reedes/vim-litecorrect" | |
call neobundle#end() | |
filetype plugin indent on | |
augroup lexical | |
autocmd! | |
autocmd FileType markdown,mkd call lexical#init() | |
\ | call litecorrect#init() | |
autocmd FileType textile call lexical#init() | |
autocmd FileType text call lexical#init({ 'spell': 0 }) | |
augroup END | |
NeoBundleCheck |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment