start a new nvim config from scratch

This commit is contained in:
2025-11-14 22:49:45 -05:00
parent 158937509c
commit 2c2804273c
11 changed files with 219 additions and 0 deletions

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

@@ -0,0 +1,26 @@
vim.o.number = true -- show line numbers
vim.o.relativenumber = true -- show line numbers relative to current line
vim.o.ignorecase = true
vim.o.smartcase = true
-- use vim
--vim.o.expandtab = true -- convert tab to spaces
--vim.o.shiftwidth = 4
vim.o.cursorline = true
vim.o.undofile = true
vim.o.showmode = false
vim.o.signcolumn = "yes"
vim.o.list = true
vim.opt.listchars = { tab = '» ', trail = '·', nbsp = '' }