Files
nixos-config/modules/home/neovim/plugins/toggleterm.nix
2025-12-07 17:28:08 +00:00

21 lines
357 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";
};
};
}