Greatly improve terminal features! Persistent terminals (#275)

* remove toggleTerm plugin

* Adding term binds, term hider & Telescope terms to bring them back

* Adding many term features!
This commit is contained in:
Galen Rowell 2021-08-18 20:13:35 +10:00 committed by GitHub
parent 51760c21f5
commit 575dc10ddc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 303 additions and 83 deletions

View file

@ -212,16 +212,6 @@ return packer.startup(function()
}
-- misc plugins
use {
"akinsho/nvim-toggleterm.lua",
event = "BufWinEnter",
config = function()
require "plugins.toggleterm"
end,
setup = function()
require("mappings").toggleterm()
end,
}
use {
"windwp/nvim-autopairs",
after = "nvim-compe",