Files
nixos-config/modules/home/neovim/plugins/toggleterm.nix
Christoph Schmatzler c224420060 lazygit
Signed-off-by: Christoph Schmatzler <christoph@schmatzler.com>
2025-11-04 16:11:12 +00:00

20 lines
405 B
Nix

{
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";
};
};
}