Improved AI tools

This commit is contained in:
Chris
2025-04-15 20:48:35 +01:00
parent c3574de9bc
commit eeb4e44367
10 changed files with 469 additions and 9 deletions

10
lua/plugins/git_blame.lua Normal file
View File

@@ -0,0 +1,10 @@
return {
'f-person/git-blame.nvim',
event = 'VeryLazy',
opts = {
enabled = true, -- if you want to enable the plugin
message_template = ' <summary> • <date> • <author> • <<sha>>', -- template for the blame message, check the Message template section for more options
date_format = '%m-%d-%Y %H:%M:%S', -- template for the date, check Date format section for more options
virtual_text_column = 1, -- virtual text start column, check Start virtual text at column section for more options
},
}