Vim-based tmux clone for Windows and others os

Vladislav 259b697542 tabs switching fix 2 years ago
.gitignore f89068a393 initial commit 2 years ago
README.md 259b697542 tabs switching fix 2 years ago
vmux.vim 259b697542 tabs switching fix 2 years ago

README.md

vmux - neovim-based tmux clone

Installation

Windows Powershell

Invoke-WebRequest https://notabug.org/eloh1m/vmux/raw/master/vmux.vim -OutFile vmux.vim
echo "$(pwd)\vmux.vim is created"
echo "@echo off`nnvim -u $(pwd)\vmux.vim" | out-file -Encoding ASCII .\vmux.cmd
echo "Add path from clipboard to PATH"
echo "$(pwd)" | clip
rundll32 sysdm.cpl,EditEnvironmentVariables

Linux/MACOS bash

wget https://notabug.org/eloh1m/vmux/raw/master/vmux.vim -O vmux.vim
echo "$PWD/vmux.vim is created"
echo "alias vmux=\"nvim -u $PWD/vmux.vim\"" >> ~/.bashrc
source ~/.bashrc