add colorbar

This commit is contained in:
2023-06-05 12:17:11 -04:00
parent 9992327105
commit c49129d1c6
+7 -1
View File
@@ -6,8 +6,10 @@ opt.relativenumber = true
-- tabs & indents -- tabs & indents
opt.tabstop = 3 opt.tabstop = 3
opt.softtabstop = 3
opt.shiftwidth = 3 opt.shiftwidth = 3
opt.expandtab = true opt.expandtab = true
opt.smartindent = true
opt.autoindent = true opt.autoindent = true
-- disable line wrapping -- disable line wrapping
@@ -16,6 +18,7 @@ opt.wrap = false
-- search -- search
opt.ignorecase = true opt.ignorecase = true
opt.smartcase = true opt.smartcase = true
opt.iskeyword:append("-") -- consider string-string as a whole word
-- cursor line -- cursor line
opt.cursorline = true opt.cursorline = true
@@ -24,6 +27,7 @@ opt.cursorline = true
opt.termguicolors = false opt.termguicolors = false
opt.background = "dark" opt.background = "dark"
opt.signcolumn = "yes" opt.signcolumn = "yes"
opt.colorcolumn = "90"
-- backspace -- backspace
opt.backspace = "indent,eol,start" opt.backspace = "indent,eol,start"
@@ -35,4 +39,6 @@ opt.clipboard:append("unnamedplus") -- use system clipboard as the default regis
opt.splitright = true opt.splitright = true
opt.splitbelow = true opt.splitbelow = true
opt.iskeyword:append("-") -- consider string-string as a whole word -- save me
opt.undodir = os.getenv("HOME") .. "/.vim/undodir"
opt.undofile = true