before lunarvim
This commit is contained in:
parent
6967424521
commit
70ab54c5d7
7 changed files with 323 additions and 5 deletions
23
lua/custom/core/options.lua
Normal file
23
lua/custom/core/options.lua
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
local opt = vim.opt
|
||||
|
||||
opt.autoindent = true
|
||||
opt.background = "dark"
|
||||
opt.backspace = "indent,eol,start"
|
||||
opt.clipboard:append("unnamedplus")
|
||||
opt.cursorline = true
|
||||
opt.expandtab = true
|
||||
opt.ignorecase = true
|
||||
opt.iskeyword:append("-")
|
||||
opt.iskeyword:append("_")
|
||||
opt.number = true
|
||||
opt.relativenumber = true
|
||||
opt.shiftwidth = 2
|
||||
opt.signcolumn = "yes"
|
||||
opt.smartcase = true
|
||||
opt.splitbelow = true
|
||||
opt.splitright = true
|
||||
opt.tabstop = 2
|
||||
opt.termguicolors = true
|
||||
opt.wrap = false
|
||||
opt.timeoutlen = 222
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue