add toggleterm

This commit is contained in:
peturparkur 2024-07-26 10:10:28 +01:00
parent 3025004d61
commit f207404efc
2 changed files with 14 additions and 5 deletions

View file

@ -0,0 +1,11 @@
return {
'akinsho/toggleterm.nvim',
version = '*',
opts = {},
config = function(_, opts)
require('toggleterm').setup {
open_mapping = [[<c-\>]],
direction = 'float',
}
end,
}