blob: 7c248d2adffcea9443d1878969c209f15a5db1de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
" Vim filetype plugin file
" Language: Eselect Module (bash)
" 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 eselect modules. These settings
" were pwned from ebuild.vim, but they wfm ..
"
if &compatible || v:version < 603
finish
endif
runtime! ftplugin/sh.vim
" Will-do-for-now whitespace settings
setlocal tabstop=4
setlocal shiftwidth=4
setlocal noexpandtab
setlocal textwidth=80
" GLEP 31 settings (??)
setlocal fileencoding=utf-8
" vim: sw=4 ts=4 et fdm=marker
|