Files
dot-files/nvim/lua/settings.lua
2025-03-15 16:22:39 -04:00

13 lines
262 B
Lua

-- General Settings
vim.o.number = true
vim.o.background = "dark"
vim.cmd([[colorscheme gruvbox]])
vim.o.verbose = 0
vim.opt.tabstop = 4
vim.opt.softtabstop = 4
vim.opt.shiftwidth = 4
vim.opt.expandtab = true
vim.opt.smartindent = true
vim.opt.linebreak = true