nvim/lua/config/settings.lua
2025-01-02 18:02:01 -06:00

20 lines
355 B
Lua

local global = vim.g
local o = vim.opt
o.number = true
o.syntax = "on"
o.autoindent = true
o.cursorline = true
o.expandtab = true
o.shiftwidth = 2
o.tabstop = 2
o.encoding = "UTF-8"
o.ruler = true
o.hidden = true
o.ttimeoutlen = 0
o.wildmenu = true
o.showmatch = true
o.inccommand = "split"
o.splitright = true
o.splitbelow = true
o.termguicolors = true