]> Arthur Taft Gitweb - nvim.git/blob - lua/config/options.lua
Change tab indent to 4 spaces
[nvim.git] / lua / config / options.lua
1 local o, wo = vim.o, vim.wo
2 o.termguicolors = true
3 o.number = true
4 wo.signcolumn = "yes"
5 o.expandtab = true
6 o.shiftwidth = 4
7 o.tabstop = 4
8 o.ignorecase = true
9 o.smartcase = true
10 o.clipboard = "unnamedplus"
11 o.updatetime = 250
12 o.splitbelow = true
13 o.splitright = true