blob: b0de35d20df45d1b3634e73eff365f2859b3dd6f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
" Vim filetype plugin 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
"
" This sets up filetype specific options for Gentoo metadata.xml files.
"
if &compatible || v:version < 603
finish
endif
runtime! ftplugin/xml.vim
" Required whitespace settings
setlocal tabstop=4
setlocal shiftwidth=4
setlocal noexpandtab
" GLEP 31 settings
setlocal fileencoding=utf-8
|