My neovim config
1-- options
2local o = vim.opt
3o.expandtab = true
4o.signcolumn = "yes"
5o.nu = true
6o.relativenumber = true
7o.tabstop = 4
8o.softtabstop = 4
9o.shiftwidth = 2
10o.expandtab = true
11o.smartindent = true
12o.wrap = false
13o.swapfile = false
14o.backup = false
15o.undofile = true
16o.undodir = vim.fn.stdpath("data") .. "/undodir"
17o.hlsearch = false
18o.incsearch = true
19o.clipboard = "unnamedplus"
20o.colorcolumn = "80"
21o.pumheight = 15
22o.updatetime = 50
23o.scrolloff = 8
24
25-- remove bg
26vim.api.nvim_set_hl(0, "Normal", { bg = "none" })