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.

13 lines
226 B

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