initial commit

This commit is contained in:
2025-08-05 00:16:13 +03:00
commit 4c7269dad4
7 changed files with 124 additions and 0 deletions

12
lua/options.lua Normal file
View File

@@ -0,0 +1,12 @@
vim.o.number = true
vim.o.relativenumber = true
vim.o.cursorline = true
vim.o.expandtab = true
vim.o.wrap = false
vim.o.undofile = true
vim.g.mapleader = " "
vim.o.winborder = "single"
vim.o.completeopt = "menu,popup,noselect"
vim.o.signcolumn = "yes"
vim.o.foldmethod = "expr"
vim.o.foldlevel = 99