This commit is contained in:
fz0x1 2024-10-07 22:17:00 +02:00
parent 1969606806
commit f4a62d0f92
2 changed files with 20 additions and 20 deletions

View file

@ -4,14 +4,14 @@ local api = vim.api
local M = {}
-- Tab / Indentation
opt.tabstop = 2
opt.shiftwidth = 2
opt.softtabstop = 2
opt.tabstop = 4
opt.shiftwidth = 4
opt.softtabstop = 4
opt.expandtab = true
opt.autoindent = true
opt.smartindent = true
opt.wrap = false
opt.shiftwidth = 2
opt.shiftwidth = 4
-- Search
opt.incsearch = true