Skip to content

Instantly share code, notes, and snippets.

View akvadrako's full-sized avatar
🥏
Frisbeeing

Devin Bayer akvadrako

🥏
Frisbeeing
View GitHub Profile
""""""""""""
""
"" Devin's VIM Settings
""
"""""""""""
" Options
set autoindent
set autowrite
@akvadrako
akvadrako / filters_plugins.py
Created February 28, 2013 10:04
send a welcome message from ansible
import yaml
class FilterModule(object):
def filters(self):
return {
'nice_yaml': lambda *a, **kw: yaml.safe_dump(*a, indent=4, default_flow_style=False, **kw),
}