6 lines
249 B
VimL
6 lines
249 B
VimL
" Disable expansion of tabs in snippet files as snippets must correctly insert
|
|
" the current filetypes tab settings.
|
|
setlocal noexpandtab
|
|
" Set tab width to 4 spaces as UltiSnips supports inline python.
|
|
setlocal tabstop=4 shiftwidth=4 softtabstop=4
|