adding additional plugins

This commit is contained in:
gregladden 2024-01-19 17:24:43 -06:00
parent 89f9e7b130
commit 3b2c65de0d
2 changed files with 94 additions and 80 deletions

View File

@ -1,3 +1,15 @@
local opt = vim.opt
-- line numbers
opt.relativenumber = true
opt.number = true
-- tabs & indentation
opt.tabstop = 2
opt.shiftwidth = 2
opt.expandtab = true
opt.autoindent = true
-- [[ Setting options ]]
-- See `:help vim.o`

View File

@ -80,5 +80,7 @@ return {
},
}
end, 0)
end
}