all repos — dotfiles @ cea0a45589c44b29d9a5b4dba3ee6a05a8ba14c2

linux dotfiles

config/nvim/lua/options.lua

local o = vim.opt

o.tabstop = 4
o.softtabstop = 4
o.shiftwidth = 4
o.expandtab = true
o.smartindent = true
o.autoindent = true
o.undofile = true
--o.colorcolumn = '80'
o.mouse = 'a'
o.wildmenu = true
o.showmatch = true
o.incsearch = true
o.foldenable = true
o.foldmethod = 'indent'
-- open most folds by default
o.foldlevelstart = 10
o.foldnestmax = 10
o.number = true
o.backspace = 'indent,eol,start'