nvim: add terminal toggling plugin
This commit is contained in:
parent
ea692f9f9a
commit
36f9381e33
2 changed files with 10 additions and 0 deletions
9
dot_config/nvim/lua/plugins/terminal.lua
Normal file
9
dot_config/nvim/lua/plugins/terminal.lua
Normal file
|
@ -0,0 +1,9 @@
|
|||
return {
|
||||
{
|
||||
"akinsho/toggleterm.nvim",
|
||||
version = "*",
|
||||
opts = {
|
||||
open_mapping = "<leader>t",
|
||||
},
|
||||
},
|
||||
}
|
|
@ -14,6 +14,7 @@ return {
|
|||
{ "<leader>g", group = "git" },
|
||||
{ "<leader>s", group = "search" },
|
||||
{ "<leader>w", group = "window" },
|
||||
{ "<leader>t", group = "terminal" },
|
||||
{ "<leader>,", group = "vim" },
|
||||
{ "<leader>q", group = "quit" },
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue