mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-08-05 10:34:52 +02:00
11 lines
235 B
Lua
11 lines
235 B
Lua
|
return {
|
||
|
'NvChad/nvterm',
|
||
|
config = function()
|
||
|
require('nvterm').setup()
|
||
|
|
||
|
vim.keymap.set('n', '<leader>tt', function()
|
||
|
require('nvterm.terminal').toggle 'horizontal'
|
||
|
end, { desc = '[T]oggle [T]erminal' })
|
||
|
end,
|
||
|
}
|