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

Enable line numbers

This commit is contained in:
Daniel Barber 2023-04-05 17:15:06 -05:00
parent d8a322f404
commit ebb3f647c4

View File

@ -2,8 +2,11 @@ require('onedark').load()
local indent = 2
-- Tabstops
vim.opt.expandtab = true
vim.opt.shiftwidth = indent
vim.opt.smartindent = true
vim.opt.tabstop = indent
-- Line numbers
vim.opt.number = true