local g = vim.g local map = require('utils').map map('t', '', [[]], { noremap = true }) require('toggleterm').setup({ open_mapping = [[]], size = function(term) if term.direction == 'horizontal' then return 15 else return vim.o.columns * 0.3 end end, })