1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-23 13:00:04 +08:00

Merge branch 'lang/haskell' into dev

This commit is contained in:
wsdjeg 2017-02-05 08:52:24 +08:00
commit 381263cd07
2 changed files with 8 additions and 1 deletions

View File

@ -13,7 +13,7 @@
[![GitHub forks](https://img.shields.io/github/forks/SpaceVim/SpaceVim.svg?style=social&label=Fork)](https://github.com/SpaceVim/SpaceVim)
[![Twitter Follow](https://img.shields.io/twitter/follow/SpaceVim.svg?style=social&label=Follow&maxAge=2592000)](https://twitter.com/SpaceVim)
![2017-02-01_1359x720](https://cloud.githubusercontent.com/assets/13142418/22506984/38c627ae-e8be-11e6-8f9c-37e260d069a7.png)
![2017-02-05_1361x720](https://cloud.githubusercontent.com/assets/13142418/22622808/42d5eb48-eb80-11e6-89dd-4672ec93d6da.png)
### Table of Contents
- [Introduction](#introduction)

View File

@ -0,0 +1,7 @@
function! SpaceVim#layers#lang#haskell#plugins() abort
let plugins = []
call add(plugins,['neovimhaskell/haskell-vim', { 'on_ft' : 'haskell'}])
call add(plugins,['pbrisbin/vim-syntax-shakespeare', { 'on_ft' : 'haskell'}])
call add(plugins,['eagletmt/neco-ghc', { 'on_ft' : 'haskell'}])
return plugins
endfunction