You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.2 KiB
Lua
29 lines
1.2 KiB
Lua
1 year ago
|
local Terminal = require('toggleterm.terminal').Terminal
|
||
|
|
||
1 year ago
|
function _G.set_terminal_keymaps()
|
||
|
local opts = {buffer = 0}
|
||
1 year ago
|
-- vim.keymap.set('t', '<esc>', [[<C-\><C-n>]], opts)
|
||
1 year ago
|
-- vim.keymap.set('t', 'jk', [[<C-\><C-n>]], opts)
|
||
|
vim.keymap.set('t', '<C-w>h', [[<Cmd>wincmd h<CR>]], opts)
|
||
|
vim.keymap.set('t', '<C-w>j', [[<Cmd>wincmd j<CR>]], opts)
|
||
|
vim.keymap.set('t', '<C-w>k', [[<Cmd>wincmd k<CR>]], opts)
|
||
|
vim.keymap.set('t', '<C-w>l', [[<Cmd>wincmd l<CR>]], opts)
|
||
|
vim.keymap.set('t', '<C-w>w', [[<C-\><C-n><C-w>]], opts)
|
||
|
end
|
||
|
|
||
|
-- if you only want these mappings for toggle term use term://*toggleterm#* instead
|
||
|
vim.cmd('autocmd! TermOpen term://* lua set_terminal_keymaps()')
|
||
1 year ago
|
|
||
1 year ago
|
function shell(direction)
|
||
|
Terminal:new({
|
||
|
dir = vim.fn.expand('%p'),
|
||
|
direction = direction,
|
||
|
hidden = true,
|
||
|
})
|
||
1 year ago
|
end
|
||
|
|
||
1 year ago
|
-- This shit didn't work, I dunno what I was trying to do here:
|
||
|
-- vim.api.nvim_set_keymap("n", "<F1>", "<cmd>lua shell('float')()<CR>", {noremap = true, silent = true})
|
||
|
-- vim.api.nvim_set_keymap("n", "<F2>", "<cmd>lua shell('below')()<CR>", {noremap = true, silent = true})
|
||
|
-- vim.api.nvim_set_keymap("n", "<F3>", "<cmd>lua shell('vertical')()<CR>", {noremap = true, silent = true})
|