Files
dotfiles/.config/nvim/lua/cole/set.lua
2024-05-24 21:35:17 -05:00

22 lines
345 B
Lua

--Line numbers
vim.opt.nu = true
vim.opt.relativenumber = true
--Formatting
vim.opt.tabstop = 4
vim.opt.shiftwidth = 4
vim.opt.expandtab = true
vim.opt.smartindent = true
--Search
vim.opt.hlsearch = false
vim.opt.incsearch = true
--Scroll settings
vim.opt.scrolloff = 8 --Always 8 lines above
--Color scheme
vim.cmd.colorscheme("habamax")