Matthias Braun | 2718fb1 | 2015-04-21 01:35:42 +0000 | [diff] [blame] | 1 | " Vim filetype plugin file |
2 | " Language: LLVM Assembly | ||||
3 | " Maintainer: The LLVM team, http://llvm.org/ | ||||
4 | |||||
5 | if exists("b:did_ftplugin") | ||||
6 | finish | ||||
7 | endif | ||||
8 | let b:did_ftplugin = 1 | ||||
9 | |||||
10 | setlocal softtabstop=2 shiftwidth=2 | ||||
11 | setlocal expandtab | ||||
Chandler Carruth | e993a16 | 2015-07-15 01:36:50 +0000 | [diff] [blame] | 12 | setlocal comments+=:; |