This commit is contained in:
2026-01-16 22:15:49 +03:00
parent 29938c53db
commit 1005194679
38 changed files with 364 additions and 1937 deletions

16
lua/core/options.lua Normal file
View File

@@ -0,0 +1,16 @@
-- core/options.lua
vim.opt.number = true
vim.opt.relativenumber = true
vim.opt.termguicolors = true
vim.opt.expandtab = false
vim.opt.shiftwidth = 4
vim.opt.tabstop = 8
vim.opt.colorcolumn = "80"
vim.opt.clipboard="unnamedplus"
vim.g.mapleader = " "
vim.opt.ignorecase = true
vim.opt.smartcase = true
vim.opt.clipboard = "unnamedplus"
vim.o.undofile = true
vim.o.undodir = vim.fn.stdpath("data") .. "/undo//"