diff --git a/core/tabstops.vim b/core/tabstops.vim index 32f5509..71333c8 100644 --- a/core/tabstops.vim +++ b/core/tabstops.vim @@ -1,4 +1,7 @@ -set softtabstop=4 -set shiftwidth=4 -set smartindent -set expandtab +"set softtabstop=4 +"set shiftwidth=4 +"set expandtab + +if has("smartindent") + set smartindent +endif