add fuzzy finder, redo ping aliases
This commit is contained in:
parent
91fa9923a2
commit
bca251b16d
17
Brewfile
17
Brewfile
@ -20,6 +20,14 @@ cask "firefox"
|
|||||||
# Fonts
|
# Fonts
|
||||||
cask "font-meslo-for-powerline"
|
cask "font-meslo-for-powerline"
|
||||||
|
|
||||||
|
# Mac app store
|
||||||
|
mas 'Keynote', id: 409183694
|
||||||
|
mas 'iMovie', id: 408981434
|
||||||
|
mas 'Microsoft Remote Desktop', id: 1295203466
|
||||||
|
mas 'Pages', id: 409201541
|
||||||
|
mas 'GarageBand', id: 682658836
|
||||||
|
mas 'Numbers', id: 409203825
|
||||||
|
|
||||||
brew "zsh"
|
brew "zsh"
|
||||||
brew "git-ftp"
|
brew "git-ftp"
|
||||||
brew "gnu-sed"
|
brew "gnu-sed"
|
||||||
@ -76,10 +84,5 @@ brew "dict"
|
|||||||
brew "prettyping"
|
brew "prettyping"
|
||||||
# Install glances for monitoring
|
# Install glances for monitoring
|
||||||
brew "glances"
|
brew "glances"
|
||||||
|
# Fuzzy Finder
|
||||||
mas 'Keynote', id: 409183694
|
brew "fzf"
|
||||||
mas 'iMovie', id: 408981434
|
|
||||||
mas 'Microsoft Remote Desktop', id: 1295203466
|
|
||||||
mas 'Pages', id: 409201541
|
|
||||||
mas 'GarageBand', id: 682658836
|
|
||||||
mas 'Numbers', id: 409203825
|
|
||||||
|
@ -195,3 +195,7 @@ yum -y install dictd
|
|||||||
yum -y install prettyping
|
yum -y install prettyping
|
||||||
# Glances + nmon for monitoring
|
# Glances + nmon for monitoring
|
||||||
yum -y install nmon glances
|
yum -y install nmon glances
|
||||||
|
# Install Fuzzy finder
|
||||||
|
git clone --depth 1 https://github.com/junegunn/fzf.git && cd fzf
|
||||||
|
yes | ./install
|
||||||
|
exec $SHELL
|
||||||
|
@ -76,8 +76,7 @@ alias du='du -ch'
|
|||||||
alias headers='curl -I --compress' # Find out if remote server supports gzip / mod_deflate or not #
|
alias headers='curl -I --compress' # Find out if remote server supports gzip / mod_deflate or not #
|
||||||
alias hist='history'
|
alias hist='history'
|
||||||
alias path='echo -e ${PATH//:/\\n}' # Explode and display current PATH
|
alias path='echo -e ${PATH//:/\\n}' # Explode and display current PATH
|
||||||
alias ping='prettyping'
|
alias ping='prettyping -c 5 --nolegend' # Stop after sending count ECHO_REQUEST packets
|
||||||
alias ping='ping -c 5' # Stop after sending count ECHO_REQUEST packets
|
|
||||||
alias p='ps -ef | grep -i ' # Show matching processes. Usage : p <process name>
|
alias p='ps -ef | grep -i ' # Show matching processes. Usage : p <process name>
|
||||||
alias root='sudo -i'
|
alias root='sudo -i'
|
||||||
alias s=ls
|
alias s=ls
|
||||||
|
Loading…
Reference in New Issue
Block a user