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
#!/usr/bin/env zsh | |
# Copy the last command executed to the clipboard. | |
# | |
# Name this script copy_last_command and add it to your fpath. | |
# Add the following in your .zshrc to bind this script to Ctrl+Z. | |
# | |
# zle -N copy_last_command | |
# bindkey -M emacs '^Z' copy_last_command | |
# bindkey -M vicmd '^Z' copy_last_command |
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
#!/usr/bin/env zsh | |
# Use fzf to cd into any directory in your home directory. | |
# | |
# Name this script fzf_super_cd and add it to your fpath. | |
# Add the following to your .zshrc to bind it to Ctrl+E. | |
# | |
# zle -N fzf_super_cd | |
# bindkey -M emacs '^E' fzf_super_cd | |
# bindkey -M vicmd '^E' fzf_super_cd |
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
{ | |
"global": { | |
"check_for_updates_on_startup": true, | |
"show_in_menu_bar": true, | |
"show_profile_name_in_menu_bar": false, | |
"unsafe_ui": false | |
}, | |
"profiles": [ | |
{ | |
"complex_modifications": { |