https://github.com/kentlouisetonino/config-tmux
Tmux command guides and configuration.
https://github.com/kentlouisetonino/config-tmux
guides tmux tmux-configuration
Last synced: about 2 months ago
JSON representation
Tmux command guides and configuration.
- Host: GitHub
- URL: https://github.com/kentlouisetonino/config-tmux
- Owner: kentlouisetonino
- License: mit
- Created: 2023-12-28T11:41:10.000Z (over 1 year ago)
- Default Branch: develop
- Last Pushed: 2024-01-04T10:19:29.000Z (over 1 year ago)
- Last Synced: 2025-01-11T00:13:21.347Z (4 months ago)
- Topics: guides, tmux, tmux-configuration
- Language: Shell
- Homepage:
- Size: 8.79 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Description
> - This repository includes the `Tmux` (Terminal Multiplexer) guides and config.
### Configuration Setup
> - Clone this repository.```bash
git clone [email protected]:kentlouisetonino/config-tmux.git
```> - Copy the tmux config to the `~` directory.
```bash
# Go first to the cloned directory.
cd config-tmux# Copy the file in home directory.
cp .tmux.conf ~/.tmux.conf
```> - Load the tmux config and execute the configuration file.
```bash
tmux source ~/.tmux.conf
```> - Restart the terminal.
### Commands
```bash
# Kill all the session and exit the app.
tmux kill-server
``````plaintext
Ctrl-b + % : Split pane vertically.
Ctrl-b + " : Split pane horizontally.
Ctrl-b + Left Arrow : Move to the left pane.
Ctrl-b + Right Arrow : Move to the right pane.
Ctrl-b + Up Arrow : Move to the top pane.
Ctrl-b + Down Arrow : Move to the down pane.
Ctrl-b + ; : Switch to last active pane.
Ctrl-b + o : Switch to next pane. This will switch the arrangement of pane.
Ctrl-A + D : Exit the current session.
```