toggleterm fixes
This commit is contained in:
@ -35,10 +35,8 @@ return require'packer'.startup(function()
|
||||
|
||||
-- Allow Popups for Telescope etc
|
||||
use 'nvim-lua/popup.nvim'
|
||||
|
||||
-- Various Color Schemes
|
||||
use 'tanvirtin/monokai.nvim'
|
||||
|
||||
-- Various Color Schemes
|
||||
use 'Mofiqul/dracula.nvim'
|
||||
use 'lunarvim/colorschemes'
|
||||
use { 'rose-pine/neovim', as = 'rose-pine' }
|
||||
@ -62,7 +60,16 @@ return require'packer'.startup(function()
|
||||
{'nvim-lua/plenary.nvim'},
|
||||
}
|
||||
}
|
||||
|
||||
-- Terminal Integration
|
||||
use {"akinsho/toggleterm.nvim",
|
||||
tag = 'v1.*',
|
||||
config = function()
|
||||
require('toggleterm').setup({
|
||||
shell = '/usr/bin/local/fish',
|
||||
})
|
||||
end,
|
||||
}
|
||||
|
||||
use {
|
||||
'feline-nvim/feline.nvim',
|
||||
requires = { 'kyazdani42/nvim-web-devicons' },
|
||||
|
||||
36
lua/plugins/toggleterm.lua
Normal file
36
lua/plugins/toggleterm.lua
Normal file
@ -0,0 +1,36 @@
|
||||
local status_ok, toggleterm = pcall(require, "toggleterm")
|
||||
if not status_ok then
|
||||
return
|
||||
end
|
||||
|
||||
toggleterm.setup({
|
||||
size = 20,
|
||||
open_mapping = [[<c-\>]],
|
||||
hide_numbers = true,
|
||||
shade_filetypes = {},
|
||||
shade_terminals = true,
|
||||
shading_factor = 1,
|
||||
start_in_insert = true,
|
||||
insert_mappings = true,
|
||||
persist_size = true,
|
||||
direction = "horizontal",
|
||||
close_on_exit = true,
|
||||
shell = vim.o.shell,
|
||||
})
|
||||
|
||||
function _G.set_terminal_keymaps()
|
||||
local opts = {noremap = true}
|
||||
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
|
||||
|
||||
vim.cmd('autocmd! TermOpen term://* lua set_terminal_keymaps()')
|
||||
--vim.cmd('set shell=fish')
|
||||
|
||||
|
||||
local Terminal = require("toggleterm.terminal").Terminal
|
||||
local node = Terminal:new({ cmd = "node", hidden = true })
|
||||
Reference in New Issue
Block a user