add custom plugins
This commit is contained in:
parent
c80a77488b
commit
693e7c3053
10 changed files with 175 additions and 1 deletions
16
lua/custom/plugins/term.lua
Normal file
16
lua/custom/plugins/term.lua
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
return {
|
||||
{
|
||||
'akinsho/toggleterm.nvim',
|
||||
version = "*",
|
||||
opts = {},
|
||||
config = function()
|
||||
require('toggleterm').setup {
|
||||
open_mapping = [[<c-\>]],
|
||||
persist_mode = true,
|
||||
direction = 'float',
|
||||
shell = 'zsh',
|
||||
close_on_exit = true,
|
||||
}
|
||||
end,
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue