aboutsummaryrefslogtreecommitdiff
path: root/vim/config/indent.vim
diff options
context:
space:
mode:
Diffstat (limited to 'vim/config/indent.vim')
-rw-r--r--vim/config/indent.vim21
1 files changed, 0 insertions, 21 deletions
diff --git a/vim/config/indent.vim b/vim/config/indent.vim
deleted file mode 100644
index aba4bbf7..00000000
--- a/vim/config/indent.vim
+++ /dev/null
@@ -1,21 +0,0 @@
-" Adopt the indent of the last line on new lines; interestingly, plugins that
-" do clever things with indenting will often assume this is set
-set autoindent
-
-" Use spaces instead of tabs
-set expandtab
-
-" Indent with four spaces when an indent operation is used
-set shiftwidth=4
-
-" Insert four spaces when Tab is pressed
-set softtabstop=4
-
-" Indent intelligently to 'shiftwidth' at the starts of lines with Tab, but
-" use 'tabstop' everywhere else
-set smarttab
-
-" When indenting lines with < or >, round the indent to a multiple of
-" 'shiftwidth', so even if the line is indented by one space it will indent
-" up to 4 and down to 0, for example
-set shiftround