Skip to content

Commit

Permalink
Installing syntastic, ghcmod, elm, vim-fsharp
Browse files Browse the repository at this point in the history
  • Loading branch information
dtchepak committed Dec 8, 2015
1 parent c0adeda commit f717fe7
Showing 1 changed file with 23 additions and 1 deletion.
24 changes: 23 additions & 1 deletion vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,27 @@ NeoBundleFetch 'Shougo/neobundle.vim' " Let NeoBundle manage NeoBundle (required

" Plugins
NeoBundle 'tomasr/molokai'

NeoBundle 'Shougo/vimproc.vim', {
\ 'build' : {
\ 'windows' : 'tools\\update-dll-mingw',
\ 'cygwin' : 'make -f make_cygwin.mak',
\ 'mac' : 'make -f make_mac.mak',
\ 'linux' : 'make',
\ 'unix' : 'gmake',
\ },
\ }
NeoBundle 'scrooloose/syntastic'
NeoBundle 'eagletmt/ghcmod-vim'
NeoBundle 'lambdatoast/elm.vim'
NeoBundle 'fsharp/vim-fsharp', {
\ 'description': 'F# support for Vim',
\ 'lazy': 1,
\ 'autoload': {'filetypes': 'fsharp'},
\ 'build': {
\ 'unix': 'make fsautocomplete',
\ },
\ 'build_commands': ['curl', 'make', 'mozroots', 'touch', 'unzip'],
\}
call neobundle#end()
" END NEOBUNDLE CONFIG

Expand Down Expand Up @@ -88,4 +108,6 @@ let g:pandoc_no_empty_implicits = 1

map <leader>t :GhcModType<CR>
map <leader>not :GhcModTypeClear<CR>
map <leader>i :GhcModInfo<CR>
map <leader>I :GhcModInfoPreview<CR>

0 comments on commit f717fe7

Please sign in to comment.