forked from saltstack-formulas/vim-formula
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pillar.example
57 lines (52 loc) · 977 Bytes
/
pillar.example
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# -*- coding: utf-8 -*-
# vim: ft=yaml
---
vim:
managed_vimrc: true
allow_localrc: false
config:
syntax: 'on'
colors: desert
# Config options can be nested
ia:
marco: macro
autocmd:
FileType:
sls: 'setlocal tabstop=2 softtabstop=2 shitfwidth=2'
BufRead,BufNewFile:
/etc/salt/*.conf: 'set filetype=sls'
/srv/*.map: 'set filetype=sls'
settings:
et: ~
cin: ~
ru: ~
bs: indent,eol,start
showcmd: ~
showmatch: ~
smartcase: ~
incsearch: ~
autowrite: ~
hidden: ~
mouse: a
number: ~
backspace: 2
noerrorbells: ~
novisualbell: ~
background: dark
ai: ~
si: ~
cindent: ~
tabstop: 8
softtabstop: 8
shiftwidth: 8
nowrap: ~
swapsync: ''
mappings:
<C-u>: :tabp<enter>
<C-i>: :tabn<enter>
<C-J>: <C-W>j
<C-K>: <C-W>k
<C-H>: <C-W>h
<C-L>: <C-W>l
lets:
&colorcolumn: join(range(121,121),",")