add config

This commit is contained in:
Patrick Michl
2024-11-05 13:01:15 +01:00
parent e0cbe28786
commit 28d8213ebc
23 changed files with 1240 additions and 0 deletions

View File

@ -0,0 +1,27 @@
_: {
plugins.gitsigns = {
enable = true;
settings = {
signs = {
add = {
text = " ";
};
change = {
text = " ";
};
delete = {
text = " ";
};
untracked = {
text = "";
};
topdelete = {
text = "󱂥 ";
};
changedelete = {
text = "󱂧 ";
};
};
};
};
}

View File

@ -0,0 +1,24 @@
{pkgs, ...}: {
extraPlugins = with pkgs.vimPlugins; [
lazygit-nvim
];
extraConfigLua =
/*
lua
*/
''
require("telescope").load_extension("lazygit")
'';
keymaps = [
{
mode = "n";
key = "<leader>gg";
action = "<cmd>LazyGit<CR>";
options = {
desc = "LazyGit (root dir)";
};
}
];
}