Skip to content

Instantly share code, notes, and snippets.

View antondemanov's full-sized avatar

Anton Demanov antondemanov

  • Nikolaev, Ukraine
View GitHub Profile
@antondemanov
antondemanov / .tmux.conf
Last active May 15, 2017 10:13
Small tmux cheatsheet
# switch panes using Alt-arrow without prefix
bind -n M-Left select-pane -L
bind -n M-Right select-pane -R
bind -n M-Up select-pane -U
bind -n M-Down select-pane -D
# split panes using | and -
bind | split-window -h
bind - split-window -v
unbind '"'
@antondemanov
antondemanov / .gitconfig
Last active July 17, 2018 12:26
Global git config file
[alias]
st = status
hist = log --pretty=format:\"%h %ad | %s%d [%an]\" --graph --date=short
co = checkout
[color "branch"]
current = yellow reverse
local = yellow
remote = green
[color "diff"]
meta = yellow bold