mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 12:15:29 +00:00
11 lines
233 B
Lua
11 lines
233 B
Lua
-- Easily interact with tmux from vim
|
|
-- https://github.com/preservim/vimux
|
|
return {
|
|
"preservim/vimux",
|
|
config = function()
|
|
vim.g.VimuxHeight = "30"
|
|
vim.g.VimuxOrientation = "h"
|
|
vim.g.VimuxUseNearestPane = 0
|
|
end,
|
|
}
|