llvm.vim 244 B

123456789101112
  1. " Vim filetype plugin file
  2. " Language: LLVM Assembly
  3. " Maintainer: The LLVM team, http://llvm.org/
  4. if exists("b:did_ftplugin")
  5. finish
  6. endif
  7. let b:did_ftplugin = 1
  8. setlocal softtabstop=2 shiftwidth=2
  9. setlocal expandtab
  10. setlocal comments+=:;