Modules/Neovim: Fix toggleterm floating terminal size + update toggleterm mappings

This commit is contained in:
2026-07-01 16:27:38 +02:00
parent 5d7d204a11
commit 4f2486ae4a
3 changed files with 22 additions and 12 deletions
+3 -3
View File
@@ -1969,12 +1969,12 @@ in {
shell = "fish";
direction = "horizontal"; # 'vertical' | 'horizontal' | 'window' | 'float'
auto_scroll = true;
clear_env = false;
# clear_env = false;
float_opts = {
border = "curved"; # 'single' | 'double' | 'shadow' | 'curved'
width = 80;
height = 80;
width.__raw = "function() return math.floor(vim.o.columns * 0.95) end";
height.__raw = "function() return math.floor(vim.o.lines * 0.85) end";
winblend = 0;
};
};