1
0
mirror of https://github.com/amix/vimrc synced 2025-07-02 05:05:00 +08:00

Track new files from updated packages

This commit is contained in:
Isaac Andrade
2016-02-17 12:03:42 -07:00
parent 6ac337eccd
commit 5a56192fd3
16 changed files with 756 additions and 0 deletions

View File

@ -0,0 +1,17 @@
" asm.vim: Vim filetype plugin for Go assembler.
if exists("b:did_ftplugin")
finish
endif
let b:did_ftplugin = 1
let b:undo_ftplugin = "setl fo< com< cms<"
setlocal formatoptions-=t
setlocal comments=s1:/*,mb:*,ex:*/,://
setlocal commentstring=//\ %s
setlocal noexpandtab
command! -nargs=0 AsmFmt call go#asmfmt#Format()