This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| =============================================================================== | |
| TMUX & VIM CONFIGURATION CHEATSHEET | |
| =============================================================================== | |
| ------------------------------------------------------------------------------- | |
| 1. TMUX CHEATSHEET | |
| ------------------------------------------------------------------------------- | |
| Your configured Prefix is: Ctrl + a | |
| You must press this combination first before hitting any of the command keys below | |
| (unless explicitly marked as [No Prefix]). |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| " =============================================================================== | |
| " MAC-ADAPTED & CLEANED VIMRC CONFIGURATION | |
| " =============================================================================== | |
| " NEEDED FOR THIS FILE TO WORK IN MACOS: | |
| " 1. Install dependencies: brew install fzf node | |
| " 2. Install vim-plug: curl -fLo ~/.vim/autoload/plug.vim --create-dirs \ | |
| " https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim | |
| " 3. Run :PlugInstall within Vim | |
| " ========================================== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # NEEDED FOR THIS TO RUN PROPERLY IN MACOS: | |
| # 1. Install Homebrew tools: brew install tmux-mem-cpu-load | |
| # 2. TMUX Plugin Manager (https://github.com/tmux-plugins/tpm) | |
| # 3. Type (your prefix + I) to install the plugins | |
| set-option -g prefix C-a | |
| # Command Sequence for Nested Tmux Sessions | |
| bind-key a send-prefix | |
| # Set the base index for windows to 1 instead of 0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| " =============================================================================== | |
| " LINUX-ADAPTED & CLEANED VIMRC CONFIGURATION | |
| " =============================================================================== | |
| " NEEDED FOR THIS FILE TO WORK IN LINUX: | |
| " 1. Install dependencies: sudo apt install fzf nodejs npm | |
| " 2. Install vim-plug: curl -fLo ~/.vim/autoload/plug.vim --create-dirs \ | |
| " https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim | |
| " 3. Run :PlugInstall within Vim | |
| " ========================================== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # NEEDED FOR THIS TO RUN PROPERLY IN LINUX: | |
| # 1. Install system utilities: sudo apt install xclip tmux-mem-cpu-load | |
| # 2. TMUX Plugin Manager (https://github.com/tmux-plugins/tpm) | |
| # 3. Type (your prefix + I) to install the plugins | |
| set-option -g prefix C-a | |
| # Command Sequence for Nested Tmux Sessions | |
| bind-key a send-prefix | |
| # Set the base index for windows to 1 instead of 0 |