diff options
author | Minijackson <minijackson@riseup.net> | 2021-06-09 09:58:50 +0200 |
---|---|---|
committer | Minijackson <minijackson@riseup.net> | 2021-06-09 09:58:50 +0200 |
commit | 5b6e7aee87d352718cbe6ed016b2b2eae5dfc734 (patch) | |
tree | 80a3210d9d926a5068bb0798a2c0c84ea69a4de3 /dotfiles | |
parent | b8a237c4d84c3d0709b12d8bea350380adfa51cb (diff) | |
download | nixos-config-reborn-5b6e7aee87d352718cbe6ed016b2b2eae5dfc734.tar.gz nixos-config-reborn-5b6e7aee87d352718cbe6ed016b2b2eae5dfc734.zip |
vim: don't override local tabstop and shiftwidth
Diffstat (limited to 'dotfiles')
-rw-r--r-- | dotfiles/vim.lua | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/dotfiles/vim.lua b/dotfiles/vim.lua index ca346f8..84e4a7f 100644 --- a/dotfiles/vim.lua +++ b/dotfiles/vim.lua | |||
@@ -14,8 +14,7 @@ vim.o.smartcase = true | |||
14 | 14 | ||
15 | vim.o.smartindent = true | 15 | vim.o.smartindent = true |
16 | 16 | ||
17 | vim.o.tabstop = 4 | 17 | -- tabstop and shiftwidth are set locally by individual filetypes |
18 | vim.o.shiftwidth = 4 | ||
19 | 18 | ||
20 | vim.o.inccommand = "split" | 19 | vim.o.inccommand = "split" |
21 | 20 | ||