1
0
mirror of https://github.com/danbee/dotfiles-local synced 2025-03-04 08:49:07 +00:00

Update nvim options

This commit is contained in:
Daniel Barber 2023-04-28 17:09:49 -05:00 committed by Dan Barber
parent 7e3a2cf5e9
commit 1d10668cd6

View File

@ -12,3 +12,11 @@ vim.opt.tabstop = indent
-- Line numbers
vim.opt.number = true
-- Line width
vim.opt.textwidth = 120
vim.opt.colorcolumn = "+1"
-- Open new split panes to the right and bottom, which feels more natural
vim.opt.splitbelow = true
vim.opt.splitright = true