mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-08-09 20:45:02 +02:00
plugin: add toggleterm
This commit is contained in:
parent
aa08dcb756
commit
590600ac7f
2 changed files with 10 additions and 1 deletions
2
init.lua
2
init.lua
|
@ -976,7 +976,7 @@ require('lazy').setup({
|
|||
-- This is the easiest way to modularize your config.
|
||||
--
|
||||
-- Uncomment the following line and add your plugins to `lua/custom/plugins/*.lua` to get going.
|
||||
-- { import = 'custom.plugins' },
|
||||
{ import = 'custom.plugins' },
|
||||
--
|
||||
-- For additional information with loading, sourcing and examples see `:help lazy.nvim-🔌-plugin-spec`
|
||||
-- Or use telescope!
|
||||
|
|
9
lua/custom/plugins/toggleterm.lua
Normal file
9
lua/custom/plugins/toggleterm.lua
Normal file
|
@ -0,0 +1,9 @@
|
|||
return {
|
||||
{
|
||||
'akinsho/toggleterm.nvim',
|
||||
version = '*',
|
||||
config = function()
|
||||
require('toggleterm').setup()
|
||||
end,
|
||||
},
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue