add more settings
This commit is contained in:
parent
5d5eca8684
commit
629d263e1d
1 changed files with 21 additions and 4 deletions
|
@ -1,13 +1,19 @@
|
||||||
local global = vim.g
|
local opt = vim.opt
|
||||||
local o = vim.opt
|
local o = vim.o
|
||||||
|
local g = vim.g
|
||||||
|
|
||||||
|
o.expandtab = true
|
||||||
|
o.autoindent = true
|
||||||
|
o.shiftwidth = 2
|
||||||
|
o.smartindent = true
|
||||||
|
o.tabstop = 2
|
||||||
|
o.softtabstop = 2
|
||||||
|
|
||||||
o.number = true
|
o.number = true
|
||||||
o.syntax = "on"
|
o.syntax = "on"
|
||||||
o.autoindent = true
|
|
||||||
o.cursorline = true
|
o.cursorline = true
|
||||||
o.expandtab = true
|
o.expandtab = true
|
||||||
o.shiftwidth = 2
|
o.shiftwidth = 2
|
||||||
o.tabstop = 2
|
|
||||||
o.encoding = "UTF-8"
|
o.encoding = "UTF-8"
|
||||||
o.ruler = true
|
o.ruler = true
|
||||||
o.hidden = true
|
o.hidden = true
|
||||||
|
@ -18,3 +24,14 @@ o.inccommand = "split"
|
||||||
o.splitright = true
|
o.splitright = true
|
||||||
o.splitbelow = true
|
o.splitbelow = true
|
||||||
o.termguicolors = true
|
o.termguicolors = true
|
||||||
|
|
||||||
|
opt.shortmess:append "sI"
|
||||||
|
|
||||||
|
o.updatetime = 250
|
||||||
|
|
||||||
|
opt.whichwrap:append "<>[]hl"
|
||||||
|
|
||||||
|
g.loaded_node_provider = 0
|
||||||
|
g.loaded_python3_provider = 0
|
||||||
|
g.loaded_perl_provider = 0
|
||||||
|
g.loaded_ruby_provider = 0
|
||||||
|
|
Loading…
Add table
Reference in a new issue