Files
sunhat/configs/dotfiles/nvim/lua/config/options.lua
2025-08-15 16:37:31 -05:00

22 lines
566 B
Lua

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')