Files
nix-config/home/autumn/programs/nvim/plugins/toggleterm.nix
T
2025-12-01 17:54:36 -05:00

14 lines
211 B
Nix

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