aboutsummaryrefslogtreecommitdiff
blob: 377c7a3339872f83138e707830d05e63f433e706 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
" Vim syntax file
" Language:	Gentoo metadata.xml
" Author:	Ciaran McCreesh <ciaranm@gentoo.org>
" Copyright:	Copyright (c) 2004-2005 Ciaran McCreesh
" Licence:	You may redistribute this under the same terms as Vim itself
"
" Syntax highlighting for metadata.xml
"

if &compatible || v:version < 603
    finish
endif

" Only load this indent file when no other was loaded.
if exists("b:did_indent")
    finish
endif

runtime! indent/xml.vim
let b:did_indent = 1

" vim: set sts=2 sw=2: