WIP - Added toggleterm, based upon curtanips work (#237)

* Added toggleterm, based upon curtanips work
Also other various term fixes & changed term mappings

* new NvChad config to hide statusline by filetype
This commit is contained in:
Galen Rowell 2021-08-14 01:59:17 +10:00 committed by GitHub
parent 3f44f0761a
commit 91c8736146
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 77 additions and 19 deletions

View file

@ -199,6 +199,16 @@ return packer.startup(
}
-- 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",