summaryrefslogtreecommitdiff
path: root/.config/nvim/lua/plugins/terminal.lua
blob: ee7f8ae8e2823a36666acf48682f9e069284cb78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
return {
  {
    "akinsho/toggleterm.nvim",
    keys = "<C-t>",
    opts = {
      open_mapping = "<C-t>",
      shade_terminals = false,
      direction = "vertical",
      size = function() return vim.o.columns * 0.45 end,
    },
  },
}