diff options
Diffstat (limited to 'ftplugin/gentoo-changelog.vim')
-rw-r--r-- | ftplugin/gentoo-changelog.vim | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/ftplugin/gentoo-changelog.vim b/ftplugin/gentoo-changelog.vim new file mode 100644 index 0000000..10f5009 --- /dev/null +++ b/ftplugin/gentoo-changelog.vim @@ -0,0 +1,16 @@ +" Vim filetype plugin file +" Language: Gentoo ChangeLogs +" 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 +" +" Sets up settings for Gentoo ChangeLogs as per GLEP 31. +" + +if &compatible || v:version < 603 + finish +endif + +" GLEP 31 settings +setlocal fileencoding=utf-8 + |