This commit is contained in:
2025-08-15 16:37:31 -05:00
parent 450f33f7dc
commit f5fd3c0344
30 changed files with 1482 additions and 1605 deletions

View File

@@ -0,0 +1,21 @@
vim.o.number = true
vim.o.relativenumber = true
vim.o.winborder = 'rounded'
vim.o.tabstop = 2
vim.o.softtabstop = 2
vim.o.shiftwidth = 2
vim.o.expandtab = true
vim.o.smartindent = true
vim.o.swapfile = false
vim.o.undodir = os.getenv('HOME') .. '/.vim/undodir'
vim.o.undofile = true
vim.o.hlsearch = true
vim.o.incsearch = true
vim.o.termguicolors = true
vim.o.scrolloff = 4
vim.o.signcolumn = 'yes'
vim.o.updatetime = 50
vim.opt.isfname:append('@-@')
vim.cmd([[set list]])
vim.cmd([[set listchars=trail:⋅,nbsp:⋅,tab:\ \ ]])
vim.cmd(':hi statusline guibg=NONE')