mirror of
https://github.com/vim/vim
synced 2025-03-15 14:27:53 +01:00
8 lines
184 B
VimL
8 lines
184 B
VimL
" Vim syntax file
|
|
" Language: systemd.unit(5)
|
|
|
|
if !exists('b:current_syntax')
|
|
" Looks a lot like dosini files.
|
|
runtime! syntax/dosini.vim
|
|
let b:current_syntax = 'systemd'
|
|
endif
|