forked from webpro/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/main'
# Conflicts: # .github/workflows/dotfiles-installation.yml # config/git/config # config/hammerspoon/apps.lua # install/Caskfile
- Loading branch information
Showing
18 changed files
with
94 additions
and
164 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
# Enable 256 color support | ||
set -g default-terminal "screen-256color" | ||
|
||
# Add Ctrl-a as prefix key and allow sending Ctrl-a to applications | ||
set-option -g prefix C-a | ||
bind-key C-a send-prefix | ||
|
||
# Remove delay when pressing escape key | ||
set -s escape-time 0 | ||
|
||
# Increase scrollback buffer size | ||
set -g history-limit 50000 | ||
|
||
# Update status bar every 5 seconds | ||
set -g status-interval 5 | ||
|
||
# Bind prefix + : to open the command prompt | ||
bind-key : command-prompt | ||
|
||
# Aggressively resize windows | ||
setw -g aggressive-resize on | ||
|
||
# Remove right status bar content | ||
set -g status-right '' | ||
|
||
# Start window and pane numbering at 1 | ||
set -g base-index 1 | ||
setw -g pane-base-index 1 | ||
|
||
# Automatically renumber windows when one is closed | ||
set -g renumber-windows on | ||
|
||
# Add pane using \ or | for horizontal, - or _ for vertical split | ||
bind '\' split-window -h | ||
bind '|' split-window -h | ||
bind - split-window -v | ||
bind _ split-window -v | ||
|
||
# Reload this config with 'prefix + r' | ||
bind r source-file $HOME/.dotfiles/config/tmux/.tmux.conf \; display "Config reloaded" | ||
|
||
# Navigate between panes using Shift + ←/→ | ||
bind -n S-right select-pane -t :.+ | ||
bind -n S-left select-pane -t :.- | ||
|
||
# Clear screen and history with Ctrl-k | ||
bind -n C-k send-keys -R Enter \; clear-history \; | ||
|
||
# Switch to oldest session or match | ||
bind d command-prompt -p "session abbr:" "run 'tmux switch -t $(tmux ls -F \"##{session_created}:##{session_name}\" | sort -n | grep \':%%\' | head -n 1 | cut -d \':\' -f 2)'" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,7 @@ brew "mackup" | |
brew "nano" | ||
brew "stow" | ||
brew "thefuck" | ||
brew "tmux" | ||
brew "topgrade" | ||
|
||
# fs/network | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
export VISUAL_GIT="stree" | ||
export VISUAL_GIT="fork" | ||
|
||
# Some app locations | ||
|
||
|
Oops, something went wrong.