add terminal
This commit is contained in:
parent
6f8f1281de
commit
9896809b29
|
@ -111,3 +111,9 @@ require('lualine').setup {
|
|||
inactive_winbar = {},
|
||||
extensions = {}
|
||||
}
|
||||
|
||||
vim.api.nvim_create_autocmd("TermClose", {
|
||||
callback = function()
|
||||
vim.cmd("close")
|
||||
end
|
||||
})
|
||||
|
|
|
@ -33,3 +33,6 @@ map("n", "<leader>9", "9gt")
|
|||
map("n", "<leader>0", ":tablast<cr>")
|
||||
|
||||
map("n", "<leader><F9>", ":call vimspector#ToggleBreakpoint( input( \"Enter condition: \" ) )<CR>")
|
||||
|
||||
map("n", "<leader>t", ":bo 15split +term<CR>")
|
||||
map("t", "<ESC>", "<C-\\><C-N>")
|
||||
|
|
Loading…
Reference in a new issue