summaryrefslogtreecommitdiff
path: root/nvim/lua/jonathan/core/options.lua
blob: dc508639ed753fa73ad0e1379ed87791b813040c (plain) (blame)
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
local opt = vim.opt

-- line numbers
-- opt.relativenumber = true
-- opt.numer = true


-- tab & indent
opt.tabstop = 4
opt.shiftwidth = 4
opt.expandtab = true
opt.autoindent = false

-- line wrapping
opt.wrap = false


-- search settings
opt.ignorecase = true
opt.smartcase = true


--opt.termguicolors = true
opt.background = "dark"

-- jthan, plz
opt.backspace = "indent,eol,start"
-- opt.clipboard:append("unnamedplus")

opt.mouse = ""