diff options
author | sinanmohd <sinan@sinanmohd.com> | 2025-09-02 12:16:28 +0530 |
---|---|---|
committer | sinanmohd <sinan@sinanmohd.com> | 2025-09-02 23:34:17 +0530 |
commit | f5ecea94c666737af9c1d6d97cab46ff38bec0a3 (patch) | |
tree | 6cf73ec7afa41ef4ae21a47270543ea600cd6930 /home/common/modules/neovim/config/lua/pacman/plugins/toggleterm.lua | |
parent | 4d7c77b9e27b68bba1d8cb5abcf7ad6bb4054ca0 (diff) |
Diffstat (limited to 'home/common/modules/neovim/config/lua/pacman/plugins/toggleterm.lua')
-rw-r--r-- | home/common/modules/neovim/config/lua/pacman/plugins/toggleterm.lua | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/home/common/modules/neovim/config/lua/pacman/plugins/toggleterm.lua b/home/common/modules/neovim/config/lua/pacman/plugins/toggleterm.lua new file mode 100644 index 0000000..83a3c65 --- /dev/null +++ b/home/common/modules/neovim/config/lua/pacman/plugins/toggleterm.lua @@ -0,0 +1,14 @@ +return { + { + "akinsho/toggleterm.nvim", + event = "VeryLazy", + opts = { + direction = "float", + open_mapping = [[<c-\>]], + on_create = function(term) + term:send("exec tmux") + end, + }, + } +} +-- vim: ts=2 sts=2 sw=2 et |