aboutsummaryrefslogtreecommitdiff
path: root/common/nvim/lua/plugins/toggleterm.lua
blob: 6b7aad5f3434cdbf23864ef35bef48936e7443b7 (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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
local M = {}

--- Setup and configure toggleterm.nvim
-- This function initializes and configures the toggleterm plugin for terminal management
-- @return boolean True if setup was successful, false otherwise
function M.setup()
  local ok, toggleterm = pcall(require, 'toggleterm')
  if not ok or not toggleterm then
    return false
  end
  
  toggleterm.setup({
  --open_mapping = [[<leader>tt]],
  autochdir = true,
  hide_numbers = true,
  shade_filetypes = {},
  shade_terminals = false,
  --shading_factor = 1,
  start_in_insert = true,
  insert_mappings = true,
  terminal_mappings = true,
  persist_size = true,
  direction = 'float',
  --direction = "vertical",
  --direction = "horizontal",
  close_on_exit = true,
  shell = vim.o.shell,
  highlights = {
    -- highlights which map to a highlight group name and a table of it's values
    -- NOTE: this is only a subset of values, any group placed here will be set for the terminal window split
    --Normal = {
    --  background = "#000000",
    --},
    --Normal = { guibg = 'Black', guifg = 'White' },
    --FloatBorder = { guibg = 'Black', guifg = 'DarkGray' },
    --NormalFloat = { guibg = 'Black' },
    float_opts = {
      --winblend = 3,
    },
  },
  size = function(term)
    if term.direction == 'horizontal' then
      return 7
    elseif term.direction == 'vertical' then
      return math.floor(vim.o.columns * 0.4)
    end
  end,
  float_opts = {
    width = 70,
    height = 15,
    border = 'curved',
    highlights = {
      border = 'Normal',
      --background = 'Normal',
    },
    --winblend = 0,
    },
  })
  
  -- Set up keymaps for toggleterm
  local Terminal = require('toggleterm.terminal').Terminal
  
  -- Custom terminal commands
  local lazygit
  if not Terminal then return end
  local term = Terminal:new({
    cmd = 'lazygit',
    dir = 'git_dir',
    direction = 'float',
    float_opts = {
      border = 'curved',
    },
    on_open = function(term)
      vim.cmd('startinsert!')
      vim.api.nvim_buf_set_keymap(term.bufnr, 'n', 'q', '<cmd>close<CR>', {noremap = true, silent = true})
    end,
  })
  if term then
    lazygit = term
  end
  
  -- Toggle functions
  local function _lazygit_toggle()
    if not Terminal then return end
    if not lazygit then
      init_lazygit()
    end
    if lazygit then
      pcall(lazygit.toggle, lazygit)
    end
  end
  
  -- Set up keymaps
  vim.keymap.set('n', '<leader>tt', '<cmd>ToggleTerm<CR>', {noremap = true, silent = true, desc = 'Toggle Terminal'})
  vim.keymap.set('n', '<leader>tf', '<cmd>ToggleTerm direction=float<CR>', {noremap = true, silent = true, desc = 'Toggle Float Terminal'})
  vim.keymap.set('n', '<leader>th', '<cmd>ToggleTerm size=10 direction=horizontal<CR>', {noremap = true, silent = true, desc = 'Toggle Horizontal Terminal'})
  vim.keymap.set('n', '<leader>tv', '<cmd>ToggleTerm size=80 direction=vertical<CR>', {noremap = true, silent = true, desc = 'Toggle Vertical Terminal'})
  vim.keymap.set('n', '<leader>tl', _lazygit_toggle, {noremap = true, silent = true, desc = 'Toggle Lazygit'})
  
  -- Terminal mode mappings
  vim.keymap.set('t', '<esc>', [[<C-\><C-n>]], {noremap = true, silent = true})
  vim.keymap.set('t', 'jk', [[<C-\><C-n>]], {noremap = true, silent = true})
  vim.keymap.set('t', '<C-h>', [[<Cmd>wincmd h<CR>]], {noremap = true, silent = true})
  vim.keymap.set('t', '<C-j>', [[<Cmd>wincmd j<CR>]], {noremap = true, silent = true})
  vim.keymap.set('t', '<C-k>', [[<Cmd>wincmd k<CR>]], {noremap = true, silent = true})
  vim.keymap.set('t', '<C-l>', [[<Cmd>wincmd l<CR>]], {noremap = true, silent = true})
  
  return true
end

-- Terminal utility functions
local mods = {}

-- Simple empty check function if mods.empty is not available
function mods.empty(v)
  return v == nil or v == ''
end
local float_handler = function(term)
  if not mods.empty(vim.fn.mapcheck('jk', 't')) then
    vim.keymap.del('t', 'jk', { buffer = term.bufnr })
    vim.keymap.del('t', '<esc>', { buffer = term.bufnr })
  end
end

function _G.set_terminal_keymaps()
  local opts = { noremap = true }
  --local opts = {buffer = 0}
  --vim.api.nvim_buf_set_keymap(0, "i", ";to", "[[<Esc>]]<cmd>Toggleterm", opts)
  vim.api.nvim_buf_set_keymap(0, 't', '<C-c>', [[<Esc>]], opts)
  vim.api.nvim_buf_set_keymap(0, 't', '<esc>', [[<C-\><C-n>]], opts)
  vim.api.nvim_buf_set_keymap(0, 't', 'jk', [[<C-\><C-n>]], opts)
  vim.api.nvim_buf_set_keymap(0, 't', '<C-h>', [[<C-\><C-n><C-W>h]], opts)
  vim.api.nvim_buf_set_keymap(0, 't', '<C-j>', [[<C-\><C-n><C-W>j]], opts)
  vim.api.nvim_buf_set_keymap(0, 't', '<C-k>', [[<C-\><C-n><C-W>k]], opts)
  vim.api.nvim_buf_set_keymap(0, 't', '<C-l>', [[<C-\><C-n><C-W>l]], opts)
end

-- if you only want these mappings for toggle term use term://*toggleterm#* instead
vim.cmd('autocmd! TermOpen term://* lua set_terminal_keymaps()')
local Terminal
local horizontal_term, vertical_term

-- Safely require toggleterm.terminal
local toggleterm_ok, toggleterm = pcall(require, 'toggleterm.terminal')
if toggleterm_ok and toggleterm and toggleterm.Terminal then
  Terminal = toggleterm.Terminal
  -- Initialize terminals only if Terminal is available
  if Terminal then
    local ok1, hterm = pcall(Terminal.new, Terminal, { hidden = true, direction = 'horizontal' })
    local ok2, vterm = pcall(Terminal.new, Terminal, { hidden = true, direction = 'vertical' })
    if ok1 then horizontal_term = hterm end
    if ok2 then vertical_term = vterm end
  end
end

function Horizontal_term_toggle()
  if horizontal_term then
    pcall(horizontal_term.toggle, horizontal_term, 8, 'horizontal')
  end
end

function Vertical_term_toggle()
  if vertical_term then
    pcall(vertical_term.toggle, vertical_term, math.floor(vim.o.columns * 0.5), 'vertical')
  end
end

-- Initialize lazygit terminal instance
local lazygit = nil
local Cur_cwd = vim.fn.getcwd()

-- Function to initialize lazygit terminal
local function init_lazygit()
  if not Terminal then return nil end
  if not lazygit then
    local ok, term = pcall(function()
      return Terminal:new({
        cmd = 'lazygit',
        count = 5,
        id = 1000,
        dir = 'git_dir',
        direction = 'float',
        on_open = float_handler,
        hidden = true,
        float_opts = {
          border = { '╒', '═', '╕', '│', '╛', '═', '╘', '│' },
          width = 150,
          height = 40,
        },
      })
    end)
    if ok and term then
      lazygit = term
    end
  end
  return lazygit
end

-- Initialize lazygit on first use
function Lazygit_toggle()
  -- Initialize lazygit if not already done
  if not init_lazygit() then return end
  
  -- cwd is the root of project. if cwd is changed, change the git.
  local cwd = vim.fn.getcwd()
  if cwd ~= Cur_cwd then
    Cur_cwd = cwd
    if lazygit then
      lazygit:close()
    end
    lazygit = Terminal:new({
      cmd = "zsh --login -c 'lazygit'",
      dir = 'git_dir',
      direction = 'float',
      hidden = true,
      on_open = float_handler,
      float_opts = {
        border = { '╒', '═', '╕', '│', '╛', '═', '╘', '│' },
        width = 150,
        height = 40,
      },
    })
  end
  if lazygit then
    lazygit:toggle()
  else
    vim.notify("Failed to initialize lazygit terminal", vim.log.levels.ERROR)
  end
end

local node = nil
local ncdu = nil

-- Initialize node terminal if Terminal is available
if Terminal then
  local ok1, nterm = pcall(function() return Terminal:new({ cmd = 'node', hidden = true }) end)
  local ok2, ncduterm = pcall(function() return Terminal:new({ cmd = 'ncdu', hidden = true }) end)
  if ok1 then node = nterm end
  if ok2 then ncdu = ncduterm end
end

function _NODE_TOGGLE()
  if not node then return end
  pcall(node.toggle, node)
end

function _NCDU_TOGGLE()
  if not ncdu then return end
  pcall(ncdu.toggle, ncdu)
end

local htop = nil

function _HTOP_TOGGLE()
  if not Terminal then return end
  if not htop then
    local ok, term = pcall(function() return Terminal:new({ cmd = 'htop', hidden = true }) end)
    if ok then htop = term end
  end
  if htop then
    pcall(htop.toggle, htop)
  end
end

local python = nil

function _PYTHON_TOGGLE()
  if not Terminal then return end
  if not python then
    local ok, term = pcall(function() return Terminal:new({ cmd = 'python', hidden = true }) end)
    if ok then python = term end
  end
  if python then
    pcall(python.toggle, python)
  end
end

function Gh_dash()
  Terminal:new({
    cmd = 'gh dash',
    hidden = true,
    direction = 'float',
    on_open = float_handler,
    float_opts = {
      height = function()
        return math.floor(vim.o.lines * 0.8)
      end,
      width = function()
        return math.floor(vim.o.columns * 0.95)
      end,
    },
  })
  Gh_dash:toggle()
end