mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-03-26 04:00:29 +08:00
- The filename is correct, but the contents have been misspelled. I've used `fastmod` to do a mechanical replace of `asepctj` to `aspectj`.
29 lines
848 B
VimL
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
|