feat: add toggleterm

This commit is contained in:
Michael Mandl 2022-02-21 16:46:37 +01:00
parent c341636729
commit 9c8ed18e9e
Signed by: mandlm
GPG key ID: 4AA25D647AA54CC7
2 changed files with 26 additions and 0 deletions

View file

@ -119,6 +119,20 @@ return require('packer').startup(function(use)
config = function() require('plugins.telescope') end,
})
-- markdown preview
use({'iamcco/markdown-preview.nvim'})
-- terminal
use({
"akinsho/nvim-toggleterm.lua",
config = function()
require("toggleterm").setup({
size = 32,
open_mapping = [[<F4>]],
})
end,
})
if packer_bootstrap then
require('packer').sync()
end