Skip to content

Instantly share code, notes, and snippets.

View ahmdtaha's full-sized avatar

Ahmed Taha ahmdtaha

View GitHub Profile
@ahmdtaha
ahmdtaha / tmux.conf
Last active January 7, 2020 18:56
Making tmux keys similar to unix screen
# Making tmux keys similar to unix screen
# remap prefix from 'C-b' to 'C-a'
unbind C-b
set-option -g prefix C-a
bind-key C-a send-prefix
# change shortcuts for split vertical and horizontal
bind | split-window -h
bind - split-window -v
unbind '"'