Files
dots/home/editors/nvim/plugins/utils/toggleterm.nix
2025-12-01 18:24:34 +01:00

15 lines
283 B
Nix

{
plugins.toggleterm = {
enable = true;
settings = {
float_opts = {};
persistent_size = true;
direction = "horizontal";
open_mapping = "[[<M-CR>]]";
shade_filetypes = ["lazygit"];
highlights.FloatBorder.guifg = "#7b8496";
};
};
}