This commit is contained in:
2025-09-05 20:46:41 -04:00
commit 5d95db3480
18 changed files with 481 additions and 0 deletions

34
nvim/lua/zinn/options.lua Normal file
View File

@@ -0,0 +1,34 @@
print("loading options.lua")
-- Disable netrw since we're using nvim-tree
vim.g.loaded_netrw = 1
vim.g.loaded_netrwPlugin = 1
vim.g.netrw_browse_split = 0
vim.g.netrw_banner = 0
vim.g.netrw_winsize = 25
vim.opt.fixendofline = false
vim.opt.fixeol = false -- prevent auto adding end of line
vim.opt.backup = false
vim.opt.colorcolumn = "100"
vim.opt.cursorline = true
vim.opt.guicursor = ""
vim.opt.nu = true
vim.opt.hlsearch = true
vim.opt.incsearch = true
vim.opt.ignorecase = true
vim.opt.isfname:append("@-@")
vim.opt.relativenumber = true
vim.opt.scrolloff = 8
vim.opt.signcolumn = "yes"
vim.opt.smartindent = true
vim.opt.swapfile = false
vim.opt.termguicolors = true
vim.opt.undodir = os.getenv("HOME") .. "/.vim/undodir"
vim.opt.undofile = true
vim.opt.updatetime = 50
vim.opt.wrap = false
vim.opt.tabstop = 2
vim.opt.softtabstop = 2
vim.opt.shiftwidth = 2
vim.opt.expandtab = true