correcting some comments
This commit is contained in:
parent
103f26762c
commit
1f23129406
|
|
@ -15,7 +15,8 @@ alias ....='cd ../../..'
|
||||||
alias .....='cd ../../../..'
|
alias .....='cd ../../../..'
|
||||||
alias p='cd -'
|
alias p='cd -'
|
||||||
|
|
||||||
## go=move to directory and instantly list its contents
|
# go=move to directory and instantly list its contents
|
||||||
|
# everyone needs this ;-)
|
||||||
go(){
|
go(){
|
||||||
cd $@
|
cd $@
|
||||||
ls -l
|
ls -l
|
||||||
|
|
@ -28,7 +29,7 @@ alias o="xdg-open"
|
||||||
# pretty print json
|
# pretty print json
|
||||||
alias ppjson='python -c "import sys, json; print json.dumps(json.load(sys.stdin), sort_keys=True, indent=4)"'
|
alias ppjson='python -c "import sys, json; print json.dumps(json.load(sys.stdin), sort_keys=True, indent=4)"'
|
||||||
|
|
||||||
# meine lieblingsvertipper ;-)
|
# my favorite typos
|
||||||
alias gerp=grep
|
alias gerp=grep
|
||||||
alias gpre=grep
|
alias gpre=grep
|
||||||
alias gre=grep
|
alias gre=grep
|
||||||
|
|
@ -47,15 +48,13 @@ alias chmkd=chmod
|
||||||
alias pign=ping
|
alias pign=ping
|
||||||
|
|
||||||
# other stuff
|
# other stuff
|
||||||
# yes, i want to use rvim instead of less
|
|
||||||
# alias less='rvim'
|
|
||||||
alias eierabend='xflock4 ; systemctl suspend --no-wall'
|
alias eierabend='xflock4 ; systemctl suspend --no-wall'
|
||||||
alias updgrade='sudo aptitude update && sudo aptitude upgrade -y'
|
alias updgrade='sudo aptitude update && sudo aptitude upgrade -y'
|
||||||
|
|
||||||
# better passwords!
|
# better passwords!
|
||||||
alias apg='apg -M sncl -n 15 -m 10 -x 20'
|
alias apg='apg -M sncl -n 15 -m 10 -x 20'
|
||||||
|
|
||||||
# pssh!
|
# pssh! when not using ansible, puppet, whatever, parallel-ssh enables you to do the same stuff on several servers with one command
|
||||||
alias pssh='parallel-ssh'
|
alias pssh='parallel-ssh'
|
||||||
|
|
||||||
# sudo aliases
|
# sudo aliases
|
||||||
|
|
|
||||||
2
.bashrc
2
.bashrc
|
|
@ -96,7 +96,7 @@ if [ -f /etc/bash_completion ]; then
|
||||||
. /etc/bash_completion
|
. /etc/bash_completion
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# local bashrc
|
# host-specific bashrc
|
||||||
[ -f ~/.bashrc_$HOSTNAME ] && source ~/.bashrc_$HOSTNAME
|
[ -f ~/.bashrc_$HOSTNAME ] && source ~/.bashrc_$HOSTNAME
|
||||||
|
|
||||||
# This allows you to bookmark your favorite places across the file system
|
# This allows you to bookmark your favorite places across the file system
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
###############################################################
|
###############################################################
|
||||||
# File: .bashrc_local
|
# File: .tmux.conf
|
||||||
# jul.io
|
# jul.io
|
||||||
###############################################################
|
###############################################################
|
||||||
# I want 256 colors everywhere
|
# I want 256 colors everywhere
|
||||||
|
|
|
||||||
1
.vimrc
1
.vimrc
|
|
@ -55,6 +55,7 @@ filetype on
|
||||||
|
|
||||||
" With a map leader it's possible to do extra key combinations
|
" With a map leader it's possible to do extra key combinations
|
||||||
" like <leader>w saves the current file
|
" like <leader>w saves the current file
|
||||||
|
" my mapleader is <spacebar> for easy access with both hands
|
||||||
let mapleader=" "
|
let mapleader=" "
|
||||||
let g:mapleader=" "
|
let g:mapleader=" "
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user