diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2019-01-06 20:15:19 -0500 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2019-01-07 02:15:19 +0100 |
commit | 0c42e0e8b1e24c2f6e2336ca955a1a5f8d3e0c5b (patch) | |
tree | cea0ecbc73bdb0c3c47beb39744b17870bdd0f91 | |
parent | ea7504cf8e22fa96a085704afa424c299f28bed5 (diff) | |
download | rneovim-0c42e0e8b1e24c2f6e2336ca955a1a5f8d3e0c5b.tar.gz rneovim-0c42e0e8b1e24c2f6e2336ca955a1a5f8d3e0c5b.tar.bz2 rneovim-0c42e0e8b1e24c2f6e2336ca955a1a5f8d3e0c5b.zip |
editorconfig: set default tab width to 8 (#9467)
Vim patches may include tabs in Vimscript test files.
editorconfig uses "indent_size" for tabs if "tab_width" is unset
so the user sees 2-width tabs.
-rw-r--r-- | .editorconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig index b117784d13..bb6a1423ef 100644 --- a/.editorconfig +++ b/.editorconfig @@ -3,6 +3,7 @@ root = true [*] indent_style = space indent_size = 2 +tab_width = 8 end_of_line = lf insert_final_newline = true charset = utf-8 |