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

Add layer for Pony programming language

This commit is contained in:
Bambang Purnomosidi D. P 2017-09-05 14:24:02 +07:00
parent 30c220a4d7
commit e16c49d4d1

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