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

Add lang#r layer (#1717)

close #1107
This commit is contained in:
Wang Shidong 2018-05-12 20:09:46 +08:00 committed by GitHub
parent 5176ee9dc7
commit 6c51289858
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,13 @@
"=============================================================================
" r.vim --- lang#r layer for SpaceVim
" Copyright (c) 2016-2017 Wang Shidong & Contributors
" Author: Wang Shidong < wsdjeg at 163.com >
" URL: https://spacevim.org
" License: GPLv3
"=============================================================================
function! SpaceVim#layers#lang#r#plugins() abort
let plugins = []
call add(plugins, ['wsdjeg/Nvim-R', {'merged' : 0}])
return plugins
endfunction