mirror of
https://github.com/cole-maxwell1/dotfiles.git
synced 2026-01-25 14:40:22 -05:00
22 lines
345 B
Lua
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")
|
|
|