1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-03-26 04:00:29 +08:00
Austin Ziegler 9fa6fad9ed
docs(aspectj): AspectJ support has been misspelled
- The filename is correct, but the contents have been misspelled. I've
  used `fastmod` to do a mechanical replace of `asepctj` to `aspectj`.
2022-07-29 07:46:26 +08:00

29 lines
848 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