summaryrefslogtreecommitdiff
path: root/nvim/lua/options.lua
blob: 5974579309f0846134a6fbab96aa41c18546dbb6 (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
34
35
36
vim.cmd "set undofile"
-- vim.opt.isfname:append("@-@")
vim.g.mapleader = ' '

local options = {
    nu = true,
    relativenumber = true,

    tabstop = 4,
    softtabstop = 4,
    shiftwidth = 4,
    expandtab = true,

    smartindent = false,
    autoindent = true,

    wrap = false,

    hlsearch = false,
    incsearch = true,

    scrolloff = 8,
    signcolumn = "no",
    cursorline = true,
    cursorlineopt = "number",

    ignorecase = true,
    smartcase = true,

    guifont = "FiraCode:h10",
    showmode = false,
}

for k, v in pairs(options) do
	vim.opt[k] = v
end