terraform.vim 305 B

123456789101112131415
  1. " Vim filetype plugin
  2. " Language: terraform
  3. " Maintainer: Janno Tjarks (janno.tjarks@mailbox.org)
  4. " Last Change: 2024 Jul 3
  5. if exists('b:did_ftplugin')
  6. finish
  7. endif
  8. let b:did_ftplugin = 1
  9. setlocal commentstring=#\ %s
  10. setlocal comments=://,:#
  11. let b:undo_ftplugin = "setlocal commentstring< comments<"