This commit is contained in:
2026-05-14 11:50:25 +02:00
parent 936681678e
commit 7bc3cfbfd6
6 changed files with 51 additions and 163 deletions

View File

@@ -2,7 +2,9 @@
vim.o.number = true -- Show line numbers
vim.o.wrap = true -- Soft-wrap lines
vim.o.tabstop = 2 -- 2 space tab width
vim.o.tabstop = 2 -- Same as above
vim.o.shiftwidth = 2 -- 2 space tab width
vim.o.expandtab = true -- 2 space tab width
vim.o.swapfile = false -- Disable swap files (annoying)
vim.o.undofile = true -- Enable undo between sessions
vim.o.mouse = 'a' -- Enable mouse support