Initial Commit

This commit is contained in:
Falon Clark
2026-03-19 13:09:21 -04:00
commit a7f8df9e50
24 changed files with 537 additions and 0 deletions

41
lua/config/options.lua Normal file
View File

@@ -0,0 +1,41 @@
local options = {
-- Make text not wrap because its annoying
wrap = false,
-- Set nvim to use terminal colors
termguicolors = true,
-- Highlight line cursor is on
cursorline = true,
-- Enable absolute and relative line numbers
number = true,
relativenumber = true,
-- Indentation
tabstop = 4,
shiftwidth = 4,
expandtab = true,
smartindent = true,
winborder = "rounded",
-- Bind yank and put to wl-clipboard
clipboard = "unnamedplus",
updatetime = 250,
swapfile = false,
foldmethod = "manual"
}
for k, v in pairs(options) do
vim.opt[k] = v
end
-- Diagnostics Setup
vim.diagnostic.config({
virtual_text = false,
virtual_lines = true,
})