blob: e370f8b4b98e0b3a6394a0d32b2497280947b943 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
-- relative line numbers
vim.opt.number = true
vim.opt.relativenumber = true
-- 4 space tabs
vim.opt.tabstop = 4
vim.opt.softtabstop = 0
vim.opt.shiftwidth = 4
vim.opt.smarttab = true
vim.opt.expandtab = true
-- smart indenting
vim.opt.autoindent = true
vim.opt.smartindent = true
-- no line wrap
vim.opt.wrap = false
-- search highlighting
vim.opt.hlsearch = false
vim.opt.incsearch = true
-- keep 9 lines on top/bottom
vim.opt.scrolloff = 9
-- 80, 120 char col
vim.opt.colorcolumn = { "80", "120" }
-- show whitespace
vim.opt.list = true
-- ^A, ^X behaviour
vim.opt.nrformats = "unsigned,alpha,hex,bin"
|