Aggiunta impostazioni base vim.
This commit is contained in:
parent
56f659d5ce
commit
0f56baa132
48 changed files with 10738 additions and 1 deletions
12
vim/filetype.vim
Normal file
12
vim/filetype.vim
Normal file
|
@ -0,0 +1,12 @@
|
|||
if exists("did_load_filetypes")
|
||||
finish
|
||||
endif
|
||||
|
||||
augroup filetypedetect
|
||||
au! BufRead,BufNewFile *.md set filetype=markdown
|
||||
au! BufRead,BufNewFile *.markdown set filetype=markdown
|
||||
au! BufRead,BufNewFile *.kd set filetype=markdown
|
||||
au! BufRead,BufNewFile *.gp set filetype=gnuplot
|
||||
au! BufRead,BufNewFile *.html.erb set filetype=eruby.html
|
||||
au! BufRead,BufNewFile *.feature set sw=2 sts=2 filetype=cucumber
|
||||
augroup END
|
Loading…
Add table
Add a link
Reference in a new issue