mirror of
https://github.com/cole-maxwell1/dotfiles.git
synced 2026-01-25 22:41:48 -05:00
Add starter nvim config
This commit is contained in:
21
.config/nvim/lua/cole/set.lua
Normal file
21
.config/nvim/lua/cole/set.lua
Normal 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")
|
||||
|
||||
Reference in New Issue
Block a user