29 lines
590 B
Lua
29 lines
590 B
Lua
local opt = vim.opt
|
|
|
|
opt.termguicolors = true
|
|
opt.number = true
|
|
opt.relativenumber = true
|
|
opt.tabstop = 2
|
|
opt.shiftwidth = 2
|
|
opt.wrap = false
|
|
opt.expandtab = true
|
|
opt.smartindent = true
|
|
opt.ignorecase = true
|
|
opt.smartcase = true
|
|
opt.scrolloff = 8
|
|
opt.sidescrolloff = 8
|
|
opt.cursorline = true
|
|
opt.signcolumn = "yes"
|
|
opt.splitbelow = true
|
|
opt.splitright = true
|
|
opt.hlsearch = true
|
|
opt.incsearch = true
|
|
opt.clipboard = "unnamedplus"
|
|
opt.completeopt = "menuone,noselect"
|
|
opt.updatetime = 50
|
|
opt.swapfile = false
|
|
opt.backup = false
|
|
opt.undofile = true
|
|
opt.splitright = true
|
|
opt.splitbelow = true
|