summaryrefslogtreecommitdiff
path: root/config/options.lua
blob: 5277299c82ab9eb7e251b7b8fd20328bdd85ccec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
local opt = vim.opt

opt.shiftwidth = 2
opt.tabstop = 2
opt.smartindent = true
opt.wrap = true
opt.syntax = "on"
opt.termguicolors = true

local backupDir = vim.fn.stdpath("state") .. "/backup"
local b = io.open(backupDir, "r")
if b then
	b:close()
else
	os.execute("mkdir -p " .. backupDir)
end

opt.backupdir = backupDir