feat: add toggleterm
This commit is contained in:
parent
c341636729
commit
9c8ed18e9e
2 changed files with 26 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue