mirror of
https://github.com/LucasVbr/dotfiles.git
synced 2026-05-13 17:12:10 +00:00
11 lines
333 B
Lua
11 lines
333 B
Lua
return {
|
|
"akinsho/toggleterm.nvim", -- Plugin toggleterm.nvim
|
|
config = function()
|
|
-- Configuration de toggleterm
|
|
require("toggleterm").setup({
|
|
open_mapping = [[<c-x>]], -- Raccourci pour ouvrir le terminal avec Ctrl+Enter
|
|
direction = "horizontal", -- Choix : "horizontal", "vertical", "float"
|
|
})
|
|
end,
|
|
}
|