a bit sloppy but working

This commit is contained in:
2022-06-17 21:39:40 -04:00
parent 07d85081aa
commit 142017e051
45 changed files with 3521 additions and 9 deletions

16
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