This commit is contained in:
ARM9 2015-03-08 13:58:42 +01:00
commit 965da68eeb
2 changed files with 26 additions and 0 deletions

6
.gitignore vendored Normal file
View File

@ -0,0 +1,6 @@
.*~
*~
*.swp
*.tmp

20
README.md Normal file
View File

@ -0,0 +1,20 @@
Syntax highlighting for GAS ARM assembly (up to v7), for the vim text editor.
### Installing
Copy /syntax into ~/.vim
__or with Pathogen__
Clone this repo into your ~/.vim/bundle directory.
```
git clone https://github.com/ARM9/arm-syntax-vim.git
```
### Using
In your .vimrc:
```
au BufNewFile,BufRead *.s,*.S set filetype=armv7
```
and/or put this line near the top or bottom of your assembly file(s):
```
@ vim:ft=armv6
```