Closed mloskot closed 8 months ago
Hi @mloskot,
You don't need to use an integrated terminal inside Neovim, with next command you can open directly, vertically and horizontally:
keymap("n", "<Leader>tv", ":botright vnew <Bar> :terminal<cr>")
keymap("n", "<Leader>th", ":botright new <Bar> :terminal<cr>")
For another hand, if you prefer dedicate a special management shell tool, I strongly recommend TMUX, and you can find info about how to configure it and use it in the channel of @cpow
Hope this helps to you,
Thank you @javiersanzgarcia !
Since my question has been answered, I'm closing this :)
Here I dare a request aka suggestion to your excellent series which is helping me immensely to learn NeoVim 😊
I have tried to configure the toggleterm following the typecraft'y way of structuring the configuration
.lua
files and here is what I came up with. It seems working. I even managed to integrate lazygit :-) But, I'm not confident this part is sound:Here is my
nvim/lua/plugins/toggleterm.lua
: