nixos/home/modules/ide/nvim/plugins/term.nix
2026-02-27 23:44:37 +01:00

15 lines
259 B
Nix

{
plugins.toggleterm = {
enable = true;
settings = {
direction = "float";
float_opts = {
border = "single";
height = 30;
width = 130;
};
shell = "fish";
open_mapping = "[[<c-t>]]";
};
};
}