Initial commit

This commit is contained in:
2025-11-04 11:44:29 +01:00
commit 04a2178f3a
23 changed files with 1099 additions and 0 deletions

28
lua/config/options.lua Normal file
View File

@@ -0,0 +1,28 @@
local opt = vim.opt
opt.termguicolors = true
opt.number = true
opt.relativenumber = true
opt.tabstop = 2
opt.shiftwidth = 2
opt.wrap = false
opt.expandtab = true
opt.smartindent = true
opt.ignorecase = true
opt.smartcase = true
opt.scrolloff = 8
opt.sidescrolloff = 8
opt.cursorline = true
opt.signcolumn = "yes"
opt.splitbelow = true
opt.splitright = true
opt.hlsearch = true
opt.incsearch = true
opt.clipboard = "unnamedplus"
opt.completeopt = "menuone,noselect"
opt.updatetime = 50
opt.swapfile = false
opt.backup = false
opt.undofile = true
opt.splitright = true
opt.splitbelow = true