Skip to content

Instantly share code, notes, and snippets.

@duckpuppy
Last active August 7, 2016 21:16
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 duckpuppy/687246db7c17f92c55b0da721acc8e4b to your computer and use it in GitHub Desktop.
Save duckpuppy/687246db7c17f92c55b0da721acc8e4b to your computer and use it in GitHub Desktop.
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