In my config , I have something like this.
-- :T <command> -> Opens in a horizontal split at the bottom
vim.api.nvim_create_user_command("T", function()
vim.cmd ":sp term://zsh"
vim.cmd "startinsert"
end, {})
vim.api.nvim_create_user_command("VT", function()
vim.cmd ":vsp term://zsh"
vim.cmd "startinsert"
end, {})
I would like to emulate something like this with better term
In my config , I have something like this.
I would like to emulate something like this with better term