Zsh und neue waybar hinzugefügt

This commit is contained in:
2025-08-07 12:51:42 +02:00
parent db84803624
commit 3f55587e18
111 changed files with 2372 additions and 2887 deletions
+5 -3
View File
@@ -1,7 +1,7 @@
return {
{
"CopilotC-Nvim/CopilotChat.nvim",
branch = "canary",
branch = "main",
dependencies = {
{ "github/copilot.vim" },
{ "nvim-lua/plenary.nvim" },
@@ -66,11 +66,13 @@ return {
selection = copilot_select.diagnostics,
},
Commit = {
prompt = "Write commit message for the change with commitizen convention. Make sure the title has maximum 50 characters and message is wrapped at 72 characters. Wrap the whole message in code block with language gitcommit.",
prompt =
"Write commit message for the change with commitizen convention. Make sure the title has maximum 50 characters and message is wrapped at 72 characters. Wrap the whole message in code block with language gitcommit.",
selection = copilot_select.gitdiff,
},
CommitStaged = {
prompt = "Write commit message for the change with commitizen convention. Make sure the title has maximum 50 characters and message is wrapped at 72 characters. Wrap the whole message in code block with language gitcommit.",
prompt =
"Write commit message for the change with commitizen convention. Make sure the title has maximum 50 characters and message is wrapped at 72 characters. Wrap the whole message in code block with language gitcommit.",
selection = function(source)
return copilot_select.gitdiff(source, true)
end,