add more settings

This commit is contained in:
amolinae 2025-01-14 22:20:51 -06:00
parent 5d5eca8684
commit 629d263e1d

View file

@ -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