summaryrefslogtreecommitdiff
path: root/config/plugin/options.lua
blob: 7a13888712aa8e935f7b0629f62a03a83915da15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
local opt = vim.opt

-- text options
opt.tabstop = 2
opt.shiftwidth = 2
opt.expandtab = false
opt.smartindent = true
opt.wrap = true

-- appearance
opt.syntax = "on"
opt.termguicolors = true