summaryrefslogtreecommitdiff
path: root/config/options.lua
blob: ab03cbd3e0de95176bd5e7717d200a8c15a16f47 (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