aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2020-11-13 00:02:49 +1300
committerTom Ryder <tom@sanctum.geek.nz>2020-11-13 00:05:09 +1300
commite16a486b8efcac7be5888182e6c45d47a2c002d7 (patch)
tree16d503288547f1d585991d868d6b453b08aff482
parentRemove unneeded load guard (diff)
downloaddotfiles-e16a486b8efcac7be5888182e6c45d47a2c002d7.tar.gz
dotfiles-e16a486b8efcac7be5888182e6c45d47a2c002d7.zip
Condense a :set line
-rw-r--r--vim/autoload/indent.vim3
1 files changed, 1 insertions, 2 deletions
diff --git a/vim/autoload/indent.vim b/vim/autoload/indent.vim
index 959acabd..d9d41bc9 100644
--- a/vim/autoload/indent.vim
+++ b/vim/autoload/indent.vim
@@ -19,8 +19,7 @@ endfunction
" Set the current buffer to tab indent
function! indent#Tabs() abort
- setlocal noexpandtab
- setlocal shiftwidth< softtabstop<
+ setlocal noexpandtab shiftwidth< softtabstop<
call indent#Undo()
endfunction