snowflake/home/programs/editors/neovim/plugins/ui/toggleterm.nix

13 lines
222 B
Nix

_: {
programs.nixvim.plugins.toggleterm = {
enable = true;
settings = {
direction = "float";
float_opts = {
border = "curved";
height = 30;
width = 130;
};
};
};
}