aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--vim/indent/csv.vim3
-rw-r--r--vim/indent/tsv.vim3
-rw-r--r--vim/indent/vim.vim3
3 files changed, 9 insertions, 0 deletions
diff --git a/vim/indent/csv.vim b/vim/indent/csv.vim
index 3d78df97..8f98d915 100644
--- a/vim/indent/csv.vim
+++ b/vim/indent/csv.vim
@@ -1,3 +1,6 @@
+" Restore local indent settings to the global values
+runtime indent/_GLOBAL.vim
+
" Manual indenting and literal tabs for CSVs
setlocal noautoindent
setlocal noexpandtab
diff --git a/vim/indent/tsv.vim b/vim/indent/tsv.vim
index 53841357..a38e53e8 100644
--- a/vim/indent/tsv.vim
+++ b/vim/indent/tsv.vim
@@ -1,3 +1,6 @@
+" Restore local indent settings to the global values
+runtime indent/_GLOBAL.vim
+
" Manual indenting and literal tabs for TSVs
setlocal noautoindent
setlocal noexpandtab
diff --git a/vim/indent/vim.vim b/vim/indent/vim.vim
index b958fe54..3b038349 100644
--- a/vim/indent/vim.vim
+++ b/vim/indent/vim.vim
@@ -1,3 +1,6 @@
+" Restore local indent settings to the global values
+runtime indent/_GLOBAL.vim
+
" Observe VimL conventions for two-space indents
setlocal shiftwidth=2
setlocal softtabstop=2