This commit is contained in:
fz0x1 2024-10-07 22:17:00 +02:00
parent 546cc79886
commit 2c3eec2c2c
Signed by: fz0x1
GPG key ID: 6F81647BE1B459F4
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