need to commit

This commit is contained in:
2023-01-03 22:05:09 -05:00
parent 32955b44c2
commit 20843a0630
56 changed files with 743 additions and 0 deletions

16
config/lua/user-conf.lua Normal file
View File

@@ -0,0 +1,16 @@
local M = {}
-- theme: catppuccino or nightfox; default is catppuccino
M.theme = "catppuccino"
-- Toggle global status line
M.global_statusline = true
-- use rg instead of grep
M.grepprg = "rg --hidden --vimgrep --smart-case --"
-- set numbered lines
M.number = true
-- set relative numbered lines
M.relative_number = true
-- enable PackerSync on plugins.lua save
M.packer_auto_sync = false
return M