summaryrefslogtreecommitdiff
path: root/home/common/modules/neovim/config/lua/pacman/plugins/toggleterm.lua
blob: 83a3c6521995280758764c9606cb505c4e86ce19 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
return {
  {
    "akinsho/toggleterm.nvim",
    event = "VeryLazy",
    opts = {
      direction = "float",
      open_mapping = [[<c-\>]],
      on_create = function(term)
        term:send("exec tmux")
      end,
    },
  }
}
-- vim: ts=2 sts=2 sw=2 et