-->

gvim vim kaoriya _gvimrc - no-indent

test

keywords: _gvimrc autocmd filetype NoIndent() ComSimple();

""" - ~/_vimrc + ~/_gvimrc -- jump <silent>gf

set runtimepath+=$HOME/vimfiles
set guicursor=a:blinkoff0
set columns=90
set lines=30

"colo desert
"colo wombat
colo xwombat

""" menu (T:toolbar,m:menubar,r:ruler)
set guioptions-=T
set guioptions-=m
set guioptions-=r

fu! NoIndent()
 se ts=1 sw=1 noai nosi nocin inde=<CR>
endfu

fu! ComSimple()
 exe "se com=s:/*,m://,ex:*/"
endfu

au BufNewFile,BufRead * se ts=2 sw=2 tw=0
au BufNewFile,BufRead *.py,*/py/* se ts=1 sw=1 ai
au FileType html,css,js,xml call NoIndent()
au FileType css,js call ComSimple()