mirror of
https://github.com/runyanjake/dotfiles.git
synced 2025-10-04 21:57:30 -07:00
9 lines
156 B
Lua
9 lines
156 B
Lua
-- enable line number and relative line number
|
|
vim.opt.number = true
|
|
|
|
-- width of a tab
|
|
vim.opt.shiftwidth = 2
|
|
vim.opt.tabstop = 2
|
|
vim.opt.softtabstop = 2
|
|
|