11 lines
290 B
VimL
11 lines
290 B
VimL
" Bash ===================================================
|
|
iabbrev <buffer> #! #!/usr/bin/env bash
|
|
iabbrev <buffer> initmodeline # vim: set ft=bash ff=unix:
|
|
|
|
" Indents of 2 instead of default 4
|
|
setlocal tabstop=2
|
|
setlocal softtabstop=2
|
|
setlocal shiftwidth=2
|
|
|
|
" vim: set ft=vim ff=unix:
|