summaryrefslogtreecommitdiffstats
path: root/dotfiles
diff options
context:
space:
mode:
Diffstat (limited to 'dotfiles')
-rw-r--r--dotfiles/vim.lua11
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
15vim.o.smartindent = true 15vim.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
19vim.o.tabstop = 4
20vim.o.shiftwidth = 4
21
22vim.opt.shortmess:append "A"
18 23
19vim.o.inccommand = "split" 24vim.o.inccommand = "split"
20 25
@@ -135,6 +140,10 @@ end, mapopts)
135-- Plugins 140-- Plugins
136---------- 141----------
137 142
143-- Polyglot
144
145vim.g.polyglot_disabled = {"sensible"}
146
138-- Gitsigns 147-- Gitsigns
139 148
140require("gitsigns").setup { 149require("gitsigns").setup {