Add starter nvim config

This commit is contained in:
2024-05-24 21:35:17 -05:00
parent 12c85b8672
commit d106beaa5c
11 changed files with 298 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
--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")