14 lines
211 B
Nix
14 lines
211 B
Nix
{ ... }:
|
|
{
|
|
programs.nixvim.plugins.toggleterm = {
|
|
enable = true;
|
|
settings = {
|
|
direction = "horizontal";
|
|
float_opts = {
|
|
border = "curved";
|
|
};
|
|
shell = "nu";
|
|
};
|
|
};
|
|
}
|