mirror of
https://codeberg.org/vlw/dotfiles.git
synced 2025-09-13 19:03:40 +02:00
Compare commits
No commits in common. "41109193bf78d67ca87d7164bcfff42655b01339" and "bea23e4341144e9d1547d413d5e81627fdffab27" have entirely different histories.
41109193bf
...
bea23e4341
2 changed files with 5 additions and 6 deletions
|
@ -20,12 +20,9 @@ cdll () {
|
|||
|
||||
# Create standard git WIP commit with timestamps
|
||||
alias gitwip="git commit -m \"wip: $(date +%Y-%m-%dT%H:%M:%S%z) ($(date +%s))\""
|
||||
|
||||
# Remove dropped upstream git branches from remote
|
||||
alias gitclear="git fetch -p && git branch -vv | awk '/: gone]/{print $1}' | xargs git branch -D"
|
||||
# Shorthand git pull origin
|
||||
alias gitp="git pull origin"
|
||||
# Shorthand git status"
|
||||
alias gits="git status"
|
||||
|
||||
# Generate random 16byte HEX
|
||||
alias rng16="head -c 16 /dev/random | xxd -p"
|
||||
|
|
|
@ -2,15 +2,17 @@
|
|||
set -g default-terminal "screen-256color"
|
||||
|
||||
# Resize to smallest attached client
|
||||
set -g window-size smallest
|
||||
#set -g window-size smallest
|
||||
|
||||
# Enable mouse support
|
||||
set -g mouse on
|
||||
|
||||
# Set control character to Ctrl+Spacebar
|
||||
# Set the control character to Ctrl+Spacebar (instead of Ctrl+B)
|
||||
set -g prefix C-space
|
||||
set -g prefix F1
|
||||
#unbind-key C-b
|
||||
bind-key C-space send-prefix
|
||||
bind-key F1 send-prefix
|
||||
|
||||
# Set new panes to open in current directory
|
||||
bind c new-window -c "#{pane_current_path}"
|
||||
|
|
Loading…
Add table
Reference in a new issue