aboutsummaryrefslogtreecommitdiff
path: root/vim/bundle/vim-snippets/snippets/dosini.snippets
blob: 95c759cb6e4648c62beeecd1406c070becec6840 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
snippet ec
	; http://editorconfig.org

	root = true

	[*]
	indent_style = ${1:space_or_tab}
	indent_size = ${2:indent_size}
	end_of_line = lf
	charset = utf-8
	trim_trailing_whitespace = true
	insert_final_newline = true