Signed-off-by: Christoph Schmatzler <christoph@schmatzler.com>
This commit is contained in:
2025-11-04 16:11:12 +00:00
parent 7fa8206850
commit c224420060
4 changed files with 41 additions and 14 deletions

View File

@@ -1,11 +0,0 @@
{
programs.nixvim.plugins.neogit = {
enable = true;
settings = {
disable_signs = false;
integrations = {
diffview = true;
};
};
};
}

View File

@@ -0,0 +1,20 @@
{
programs.nixvim.plugins.toggleterm = {
enable = true;
settings = {
open_mapping = null;
direction = "float";
float_opts = {
border = "curved";
winblend = 3;
};
size = 20;
hide_numbers = true;
shade_terminals = true;
shading_factor = 2;
start_in_insert = true;
close_on_exit = true;
shell = "fish";
};
};
}