mirror of
https://github.com/danbee/dotfiles-local
synced 2025-03-04 08:49:07 +00:00
15 lines
227 B
Lua
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
|