mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-03-26 04:00:29 +08:00
close https://github.com/SpaceVim/SpaceVim/pull/4751 Co-authored-by: Ricardo Martincoski <ricardo.martincoski@gmail.com>
29 lines
850 B
VimL
29 lines
850 B
VimL
"=============================================================================
|
|
" aspectj.vim --- aspectj language support in SpaceVim
|
|
" Copyright (c) 2016-2022 Wang Shidong & Contributors
|
|
" Author: Wang Shidong < wsdjeg@outlook.com >
|
|
" URL: https://spacevim.org
|
|
" License: GPLv3
|
|
"=============================================================================
|
|
|
|
""
|
|
" @section lang#aspectj, layers-lang-aspectj
|
|
" @parentsection layers
|
|
" This layer provides syntax highlighting for aspectj. To enable this
|
|
" layer:
|
|
" >
|
|
" [[layers]]
|
|
" name = "lang#aspectj"
|
|
" <
|
|
|
|
function! SpaceVim#layers#lang#aspectj#plugins() abort
|
|
let plugins = []
|
|
call add(plugins, ['wsdjeg/vim-aspectj', { 'merged' : 0}])
|
|
return plugins
|
|
endfunction
|
|
|
|
function! SpaceVim#layers#lang#aspectj#health() abort
|
|
call SpaceVim#layers#lang#aspectj#plugins()
|
|
return 1
|
|
endfunction
|