diff options
-rw-r--r-- | dotfiles/vim.lua | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/dotfiles/vim.lua b/dotfiles/vim.lua index 4588ae8..a993e99 100644 --- a/dotfiles/vim.lua +++ b/dotfiles/vim.lua | |||
@@ -14,7 +14,12 @@ vim.o.smartcase = true | |||
14 | 14 | ||
15 | vim.o.smartindent = true | 15 | vim.o.smartindent = true |
16 | 16 | ||
17 | -- tabstop and shiftwidth are set locally by individual filetypes | 17 | -- tabstop and shiftwidth are also set locally by individual filetypes |
18 | |||
19 | vim.o.tabstop = 4 | ||
20 | vim.o.shiftwidth = 4 | ||
21 | |||
22 | vim.opt.shortmess:append "A" | ||
18 | 23 | ||
19 | vim.o.inccommand = "split" | 24 | vim.o.inccommand = "split" |
20 | 25 | ||
@@ -135,6 +140,10 @@ end, mapopts) | |||
135 | -- Plugins | 140 | -- Plugins |
136 | ---------- | 141 | ---------- |
137 | 142 | ||
143 | -- Polyglot | ||
144 | |||
145 | vim.g.polyglot_disabled = {"sensible"} | ||
146 | |||
138 | -- Gitsigns | 147 | -- Gitsigns |
139 | 148 | ||
140 | require("gitsigns").setup { | 149 | require("gitsigns").setup { |