vim stuff

This commit is contained in:
2026-06-26 22:25:01 -04:00
parent f656f0f956
commit 5d22c2f937
2 changed files with 24 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
-- Basic Neovim settings (converted from old .vimrc)
vim.opt.expandtab = true -- Convert tabs to spaces
vim.opt.tabstop = 4 -- Tab width
vim.opt.shiftwidth = 4 -- Indent width
vim.opt.softtabstop = 4 -- Backspace behavior
vim.opt.number = true -- Line numbers
vim.opt.cursorline = true -- Highlight current line
-- Quality of life
vim.opt.termguicolors = true
vim.opt.mouse = "a"
vim.opt.ignorecase = true
vim.opt.smartcase = true
vim.opt.wrap = false
vim.opt.scrolloff = 8
vim.opt.signcolumn = "yes" -- Always show sign column