blob: 94ded94b2787cd589d4f1b188020a864eef563a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
local o = vim.o
local opt = vim.opt
local wo = vim.wo
local bo = vim.bo
-- Global options --
o.smarttab = true
o.clipboard = "unnamedplus"
o.termguicolors = 24
o.list = true
opt.listchars = { space = "⋅", tab = " " }
o.autochdir = true
-- Window options --
wo.number = true
wo.relativenumber = true
-- Buffer options --
bo.expandtab = true
bo.tabstop = 4
bo.smartindent = true
--bo.softtabstop = 0
bo.shiftwidth = 2
|