before lunarvim

This commit is contained in:
Fernando Bueno 2023-07-02 00:30:19 -04:00
parent 6967424521
commit 70ab54c5d7
7 changed files with 323 additions and 5 deletions

View 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