Files
nix-config/home-manager/programs/nvim/plugins/toggleterm.nix
T
autumn-the-kitty-cat ffe63a7a0d init: init
2025-11-17 22:58:39 -05:00

14 lines
211 B
Nix

{ ... }:
{
programs.nixvim.plugins.toggleterm = {
enable = true;
settings = {
direction = "horizontal";
float_opts = {
border = "curved";
};
shell = "nu";
};
};
}