Ubuntu Pastebin

Paste from root at Thu, 3 Nov 2016 01:43:15 +0000

Download as text
1
2
3
4
5
6
7
8
" Strip trailing spaces from Haskell & Salt files when saving
autocmd BufWritePre *.hs *.sls  %s/\s\+$//e

" All .sls's should be treated as YAML
autocmd BufNewFile,BufRead *.sls    setfiletype yaml

autocmd FileType yaml       setlocal expandtab tabstop=2
autocmd FileType haskell    setlocal expandtab tabstop=4
Download as text