dotfiles/neovim/lua/config/options.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