aboutsummaryrefslogtreecommitdiff
path: root/vim/macros
diff options
context:
space:
mode:
Diffstat (limited to 'vim/macros')
-rw-r--r--vim/macros/indent/spaces.vim7
-rw-r--r--vim/macros/indent/spaces/2.vim3
-rw-r--r--vim/macros/indent/spaces/4.vim3
3 files changed, 0 insertions, 13 deletions
diff --git a/vim/macros/indent/spaces.vim b/vim/macros/indent/spaces.vim
deleted file mode 100644
index d4b36afe..00000000
--- a/vim/macros/indent/spaces.vim
+++ /dev/null
@@ -1,7 +0,0 @@
-" Use spaces for current buffer's indentation (set 'shiftwidth' first)
-setlocal expandtab
-let b:undo_ftplugin .= '|setlocal expandtab< shiftwidth<'
-if &l:softtabstop != -1
- let &l:softtabstop = &l:shiftwidth
- let b:undo_ftplugin .= '|setlocal softtabstop<'
-endif
diff --git a/vim/macros/indent/spaces/2.vim b/vim/macros/indent/spaces/2.vim
deleted file mode 100644
index a0f847ae..00000000
--- a/vim/macros/indent/spaces/2.vim
+++ /dev/null
@@ -1,3 +0,0 @@
-" Use two spaces for current buffer's indentation
-setlocal shiftwidth=2
-runtime macros/indent/spaces.vim
diff --git a/vim/macros/indent/spaces/4.vim b/vim/macros/indent/spaces/4.vim
deleted file mode 100644
index 13ac5258..00000000
--- a/vim/macros/indent/spaces/4.vim
+++ /dev/null
@@ -1,3 +0,0 @@
-" Use four spaces for current buffer's indentation
-setlocal shiftwidth=4
-runtime macros/indent/spaces.vim