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

14 lines
222 B
Nix
Raw Normal View History

2024-11-01 07:21:24 -04:00
_: {
programs.nixvim.plugins.toggleterm = {
enable = true;
settings = {
direction = "float";
float_opts = {
border = "curved";
height = 30;
width = 130;
};
};
};
}