mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-23 17:31:34 +08:00
15 lines
508 B
VimL
15 lines
508 B
VimL
""
|
|
" @section lang#elixir, layer-lang-elixir
|
|
" @parentsection layers
|
|
" @subsection Intro
|
|
" The lang#elixir layer provides code completion, documentation lookup, jump to
|
|
" definition, mix integration, and iex integration for Elixir. SpaceVim
|
|
" uses neomake as default syntax checker which is loaded in
|
|
" @section(layer-checkers)
|
|
|
|
function! SpaceVim#layers#lang#elixir#plugins() abort
|
|
let plugins = []
|
|
call add(plugins, ['slashmili/alchemist.vim', {'on_ft' : 'elixir'}])
|
|
return plugins
|
|
endfunction
|