Skip to content

Instantly share code, notes, and snippets.

@FA5I
FA5I / resources_APS.md
Created February 5, 2023 18:44 — forked from joannakl/resources_APS.md
Resources for Algorithmic Problem Solving
@FA5I
FA5I / .tmux.conf
Created November 18, 2022 23:25 — forked from william8th/.tmux.conf
Tmux open new pane in same directory
# Set the control character to Ctrl+Spacebar (instead of Ctrl+B)
set -g prefix C-space
unbind-key C-b
bind-key C-space send-prefix
# Set new panes to open in current directory
bind c new-window -c "#{pane_current_path}"
bind '"' split-window -c "#{pane_current_path}"
bind % split-window -h -c "#{pane_current_path}"