1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-03 03:00:04 +08:00

Merge pull request #823 from oldstager/lang/pony

Add layer for Pony programming language
This commit is contained in:
Wang Shidong 2017-09-06 22:38:51 +08:00 committed by GitHub
commit f4e087c0ff

View File

@ -0,0 +1,18 @@
"=============================================================================
" pony.vim --- pony Layer file for SpaceVim
" Copyright (c) 2012-2016 kShidong Wang & Contributors
" Author: Bambang Purnomsoidi D. P, < bambangpdp at gmail.com >
" URL: https://spacevim.org
" License: MIT license
"=============================================================================
""
" @section lang#pony, layer-lang-pony
" @parentsection layers
function! SpaceVim#layers#lang#pony#plugins() abort
let plugins = []
" .pony file type
call add(plugins, ['jakwings/vim-pony', { 'on_ft' : 'pony'}])
return plugins
endfunction