aboutsummaryrefslogtreecommitdiff
path: root/lua/nvterm/init.lua
blob: 71524265c57dcc7e2b4dcc805a94e15c76b4432b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
local M = {}

local terminal = require("nvterm.terminal")

local defaults = {
  terminals = {
    list = {},
    type_opts = {
      float = {
        relative = 'editor',
        row = 0.3,
        col = 0.25,
        width = 0.5,
        height = 0.4,
        border = "single",
      },
      horizontal = { location = "rightbelow", split_ratio = .3, },
      vertical = { location = "rightbelow", split_ratio = .5 },
    }
  },
  behavior = {
    close_on_exit = true,
    auto_insert = true,
  },
  mappings = {
    toggle = {
      { '<A-i>', function () terminal.new_or_toggle('float') end },
      { '<A-h>', function () terminal.new_or_toggle('horizontal') end },
      { '<A-v>', function () terminal.new_or_toggle('vertical') end },
    }
  }
}

local set_behavior = function(behavior)
  if behavior.close_on_exit then
    vim.api.nvim_create_autocmd({"TermClose"},{
      callback = function()
        vim.schedule_wrap(vim.api.nvim_input('<CR>'))
      end
    })
  end
  if behavior.auto_insert then
    vim.api.nvim_create_autocmd({"BufEnter"}, {
      callback = function() vim.cmd('startinsert') end,
      pattern = 'term://*'
    })
    vim.api.nvim_create_autocmd({"BufLeave"}, {
      callback = function() vim.cmd('stopinsert') end,
      pattern = 'term://*'
    })
  end
end

local create_mappings = function (mappings)
  local opts = { noremap = true, silent = true }
  for _, mapping in ipairs(mappings.toggle) do
    vim.keymap.set({'n', 't'}, mapping[1], mapping[2], opts)
  end
end

M.setup = function (config)
  config = config and vim.tbl_deep_extend("force", defaults, config) or defaults
  local types = {'horizontal', 'vertical', 'float'}
  for _, type in ipairs(types) do
    if config[type] then
      config.terminals.type_opts[type] = vim.tbl_deep_extend("force", config.terminals.type_opts[type], config[type])
      config[type] = nil
    end
  end
  set_behavior(config.behavior)
  create_mappings(config.mappings)
  terminal.init(config.terminals)
end

return M