Skip to content

@zevaverbach
zevaverbach / .bashrc
Created November 7, 2023 15:21
basic .bashrc and .vimrc to hit the ground running
bind -r '\C-s'
stty -ixon
@parikhhi
parikhhi / .bashrc
Last active April 26, 2018 19:47
CAB workshop
#.bashrc
## Useful tips and tricks
# User specific aliases and functions
alias ls='ls -lrth'
alias la='ls -la'
alias rm='rm -i'
alias mv='mv -i'
# show working dir with prompt
@pawel-grabowski
pawel-grabowski / .bashrc
Last active October 17, 2024 21:53
Config for Git Bash + fff
# enable color support of ls and also add handy aliases
if [ -x /usr/bin/dircolors ]; then
test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
alias ls='ls --color=auto'
alias dir='dir --color=auto'
alias vdir='vdir --color=auto'
alias grep='grep --color=auto'
alias fgrep='fgrep --color=auto'
alias egrep='egrep --color=auto'
@thanhson1085
thanhson1085 / .bashrc
Last active October 30, 2015 03:53
My bashrc and vimrc
export GREP_OPTIONS="-n --color"
export VISUAL=vim
export EDITOR="$VISUAL"
alias ff='find . -type f|xargs grep -in'
alias h="history"
alias vi="vim"
alias j='jobs'
alias 1='fg 1'
alias 2='fg 2'
alias 3='fg 3'
@sebacruz
sebacruz / .bashrc
Last active November 16, 2016 20:51
[ -r /etc/bashrc ] && source /etc/bashrc
[ -r /etc/bash_completion ] && source /etc/bash_completion
[ -r ~/.git-completion.bash ] && source ~/.git-completion.bash
[ -r ~/.git-prompt.sh ] && source ~/.git-prompt.sh
[ -r /usr/local/rvm/scripts/rvm ] && source /usr/local/rvm/scripts/rvm
__has_parent_dir () {
# Utility function so we can test for things like .git/.hg without firing up a
# separate process
test -d "$1" && return 0;
@brandon-sylee
brandon-sylee / .bashrc
Last active June 5, 2020 05:55
linux 설정
# .bashrc
```shell script
# User specific aliases and functinos
alias llog='ls -rt $1*| tail -n 1 | xargs tail -f'
alias ll='ls -al --color=auto'
alias sl='alias | grep $1'
```
@devld
devld / .bashrc
Last active April 28, 2020 07:44
Git-Bash configuration
export LANG=zh_CN.UTF-8
alias ls="ls --color=tty"
alias e="explorer .; true"
# alias for git
alias glg="git log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit"
alias ga="git add ."
alias gco="git checkout"
@lcobucci
lcobucci / .bashrc
Last active February 15, 2023 11:45
My dot files
# .bashrc
# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
if [ -f /usr/share/git-core/contrib/completion/git-prompt.sh ]; then
source /usr/share/git-core/contrib/completion/git-prompt.sh
fi
@coindegen
coindegen / .bashrc
Last active July 20, 2022 00:31
vimrc
# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples
# If not running interactively, don't do anything
case $- in
*i*) ;;
*) return;;
esac
@adamwespiser
adamwespiser / .bashrc
Created May 2, 2012 19:02
bashrcAndVimRC
PS1="\!@local:\W$ "
export CLICOLOR=true
export PATH=$PATH:/Users/dcaffrey/bin:/usr/local/mysql-5.1.41-osx10.5-x86/bin:/Users/dcaffrey/programs/muscle3.6_src:/Users/dcaffrey/programs/ViennaRNA-1.8.3/bin:/Users/dcaffrey/programs/blast-2.2.14/bin:/Users/dcaffrey/programs/hmmer-3.0-macosx-intel/binaries:/Users/dcaffrey/programs/wise2.2.0/src/bin:/Users/dcaffrey/programs/clustalw-2.0.12-macosx/:/Users/dcaffrey/programs/scwrl4:/Users/dcaffrey/programs/meme/bin:/usr/local/mysql/bin/:/Users/dcaffrey/programs/mrbayes/mrbayes-3.1.2:/Users/dcaffrey/programs/usr/local/bin:/Users/dcaffrey/programs/ligplot/hbplus:/Users/dcaffrey/programs/glam-src:/Users/dcaffrey/programs/rosetta3.1Bundles/rosetta_source/bin:/Users/adam/work/scripts/other:/Users/adam/work/scripts/ensembl/modules/:/Users/adam/bin:/Users/adam/work/scripts/other/modules
#PERL5LIB=${PERL5LIB}:/Users/dcaffrey/programs/bioPerl/bioperl-live:/Users/dcaffrey/programs/ensemblApi/ensembl/modules:/Users/dcaffrey/programs/ensemblApi/ensembl-compara/modules:/Users/dcaff