rewrite and additions

This commit is contained in:
2026-04-22 20:42:40 +02:00
parent 62f5f79ffd
commit 75d1243d0e
5 changed files with 262 additions and 292 deletions
+17
View File
@@ -0,0 +1,17 @@
vim.g.mapleader = " "
local o = vim.o
o.number = true
o.relativenumber = true
o.tabstop = 4
o.shiftwidth = 4
o.expandtab = true
o.signcolumn = "yes"
o.swapfile = false
o.winborder = "single"
o.termguicolors = true
vim.diagnostic.config({
virtual_text = { prefix = "", spacing = 2, source = "if_many" },
severity_sort = true,
})