LunarVim/lua/core/terminal.lua

92 lines
2.9 KiB
Lua
Raw Normal View History

2021-07-15 05:15:12 +02:00
local M = {}
M.config = function()
lvim.builtin["terminal"] = {
2021-07-15 05:15:12 +02:00
-- size can be a number or function which is passed the current terminal
size = 5,
-- open_mapping = [[<c-\>]],
open_mapping = [[<c-t>]],
hide_numbers = true, -- hide the number column in toggleterm buffers
shade_filetypes = {},
shade_terminals = true,
shading_factor = 2, -- the degree by which to darken to terminal colour, default: 1 for dark backgrounds, 3 for light
start_in_insert = true,
insert_mappings = true, -- whether or not the open mapping applies in insert mode
persist_size = true,
-- direction = 'vertical' | 'horizontal' | 'window' | 'float',
direction = "float",
close_on_exit = true, -- close the terminal window when the process exits
shell = vim.o.shell, -- change the default shell
-- This field is only relevant if direction is set to 'float'
float_opts = {
-- The border key is *almost* the same as 'nvim_win_open'
-- see :h nvim_win_open for details on borders however
-- the 'curved' border is a custom border type
-- not natively supported but implemented in this plugin.
-- border = 'single' | 'double' | 'shadow' | 'curved' | ... other options supported by win open
border = "curved",
-- width = <value>,
-- height = <value>,
winblend = 0,
2021-07-15 05:15:12 +02:00
highlights = {
border = "Normal",
background = "Normal",
},
},
-- Add executables on the lv-config file
-- { exec, keymap, name}
-- lvim.builtin.terminal.execs = {{}} to overwrite
-- lvim.builtin.terminal.execs[#lvim.builtin.terminal.execs+1] = {"gdb", "tg", "GNU Debugger"}
execs = { { "lazygit", "gg", "LazyGit" } },
2021-07-15 05:15:12 +02:00
}
end
M.setup = function()
local status_ok, terminal = pcall(require, "toggleterm")
if not status_ok then
print(terminal)
return
end
for _, exec in pairs(lvim.builtin.terminal.execs) do
require("core.terminal").add_exec(exec[1], exec[2], exec[3])
end
terminal.setup(lvim.builtin.terminal)
end
local function is_installed(exe)
return vim.fn.executable(exe) == 1
end
M.add_exec = function(exec, keymap, name)
2021-07-15 05:15:12 +02:00
vim.api.nvim_set_keymap(
"n",
"<leader>" .. keymap,
"<cmd>lua require('core.terminal')._exec_toggle('" .. exec .. "')<CR>",
2021-07-15 05:15:12 +02:00
{ noremap = true, silent = true }
)
lvim.builtin.which_key.mappings[keymap] = name
2021-07-15 05:15:12 +02:00
end
M._split = function(inputstr, sep)
if sep == nil then
sep = "%s"
end
local t = {}
for str in string.gmatch(inputstr, "([^" .. sep .. "]+)") do
table.insert(t, str)
end
return t
2021-07-15 05:15:12 +02:00
end
M._exec_toggle = function(exec)
local binary = M._split(exec)[1]
if is_installed(binary) ~= true then
print("Please install executable " .. binary .. ". Check documentation for more information")
2021-07-15 05:15:12 +02:00
return
end
local Terminal = require("toggleterm.terminal").Terminal
local exec_term = Terminal:new { cmd = exec, hidden = true }
exec_term:toggle()
2021-07-15 05:15:12 +02:00
end
return M