Klimi's new dotfiles with stow.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

14 lines
226 B

# -*- mode: snippet -*-
# name: filef
# key: filef
# --
file "${1:name}" do
path "${3:path}"
backup ${4:5}
owner "${5:root}"
group "${6:root}"
mode "${7:0644}"
content "${8:content here}"
action :${2:create}
end