This file contains hidden or 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
hs.loadSpoon("ShiftIt") | |
spoon.ShiftIt:bindHotkeys({}) | |
hs.hotkey.bind({"fn"}, "`", function() | |
hs.application.launchOrFocus('Alacritty') | |
end) |
This file contains hidden or 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
unbind-key C-b | |
set-option -g prefix C-a | |
bind-key C-a send-prefix | |
set -sg escape-time 1 | |
set -g base-index 1 | |
setw -g pane-base-index 1 |
This file contains hidden or 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
backup: | |
mysqldump -u root -p[root_password] [database_name] > dumpfilename.sql | |
restore: | |
mysql -u root -p[root_password] [database_name] < dumpfilename.sql | |
Fastest way to restore: |