all: Initial dotfiles

Import an initial copy of all of my dotfiles

Signed-off-by: Nicholas Mello <nick@nmello.dev>
This commit is contained in:
2025-08-14 19:21:24 -05:00
parent 213a40bc27
commit 65d08b0772
20 changed files with 809 additions and 0 deletions

20
nvim/lua/plugins/git.lua Normal file
View File

@@ -0,0 +1,20 @@
return {
{
"lewis6991/gitsigns.nvim",
config = function()
require("gitsigns").setup({
signs = {
add = { text = "+" },
change = { text = "~" },
delete = { text = "_" },
topdelete = { text = "" },
changedelete = { text = "~" },
},
numhl = false,
linehl = false,
watch_gitdir = { interval = 1000 }, -- auto-refresh
attach_to_untracked = true,
})
end,
},
}