1
0
mirror of https://github.com/danbee/dotfiles-local synced 2025-03-04 08:49:07 +00:00
dotfiles-local/config/nvim/lua/config/options.lua
2023-04-25 14:29:52 -05:00

15 lines
227 B
Lua

require("onedark").load()
local indent = 2
vim.opt.updatetime = 100
-- Tabstops
vim.opt.expandtab = true
vim.opt.shiftwidth = indent
vim.opt.smartindent = true
vim.opt.tabstop = indent
-- Line numbers
vim.opt.number = true