2014-07-10 21:05:51 -07:00
|
|
|
" Vim filetype plugin file
|
2017-11-05 21:05:54 -07:00
|
|
|
" Language: YAML (YAML Ain't Markup Language)
|
2021-04-27 17:26:22 -07:00
|
|
|
" Previous Maintainer: Nikolai Weibull <now@bitwi.se> (inactive)
|
|
|
|
" Last Change: 2020 Mar 02
|
2014-07-10 21:05:51 -07:00
|
|
|
|
|
|
|
if exists("b:did_ftplugin")
|
|
|
|
finish
|
|
|
|
endif
|
|
|
|
let b:did_ftplugin = 1
|
|
|
|
|
|
|
|
let s:cpo_save = &cpo
|
|
|
|
set cpo&vim
|
|
|
|
|
|
|
|
let b:undo_ftplugin = "setl com< cms< et< fo<"
|
|
|
|
|
|
|
|
setlocal comments=:# commentstring=#\ %s expandtab
|
|
|
|
setlocal formatoptions-=t formatoptions+=croql
|
|
|
|
|
2024-04-15 18:33:51 -07:00
|
|
|
" rime input method engine uses `*.custom.yaml` as its config files
|
|
|
|
if expand('%:r:e') ==# 'custom'
|
|
|
|
compiler rime_deployer
|
|
|
|
setlocal include=__include:\\s*
|
|
|
|
let b:undo_ftplugin ..= " inc<"
|
|
|
|
endif
|
|
|
|
|
2021-04-27 17:26:22 -07:00
|
|
|
if !exists("g:yaml_recommended_style") || g:yaml_recommended_style != 0
|
|
|
|
let b:undo_ftplugin ..= " sw< sts<"
|
|
|
|
setlocal shiftwidth=2 softtabstop=2
|
|
|
|
endif
|
|
|
|
|
2014-07-10 21:05:51 -07:00
|
|
|
let &cpo = s:cpo_save
|
|
|
|
unlet s:cpo_save
|