toggleterm fixes

This commit is contained in:
Norm Rasmussen
2022-06-30 14:16:47 -04:00
parent 75ffdb60ea
commit 44a4c3f80f
5 changed files with 66 additions and 10 deletions

View File

@ -6,6 +6,7 @@ local default_opts = { noremap = true, silent = true }
-- Fast saving with <leader> and s
map('n', '<leader>s', ':w<CR>', default_opts)
map('n', '<leader>a', ':w|:luafile %<CR>', default_opts)
map('i', '<leader>s', '<C-c>:w<CR>', default_opts)
-- Move around splits using Ctrl + {h,j,k,l}
@ -27,8 +28,9 @@ map('n', '<leader>r', ':tabclose<CR>', default_opts)
-- Applications and Plugins shortcuts
-----------------------------------------------------------
-- Open terminal
-- map('n', '<C-t>', ':Term<CR>', { noremap = true })
-- Open terminal as Float
--map('n', '<c-o>', ':ToggleTerm dir=/Users/normrasmussen/ direction=float<CR>', default_opts)
-- Vista Shortcuts
map('n', '<leader>v', ':Vista!!<CR>', default_opts) -- show Vista panel

View File

@ -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' },

View 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 })