Add muttrc

This commit is contained in:
Brandon Cornejo 2014-07-09 13:38:27 -05:00
commit 3d250a45d4
2 changed files with 30 additions and 21 deletions

50
bashrc
View File

@ -30,12 +30,12 @@ NORMAL='\[\033[00m\]'
if [ -n "$force_color_prompt" ]; then if [ -n "$force_color_prompt" ]; then
if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then
# We have color support; assume it's compliant with Ecma-48 # We have color support; assume it's compliant with Ecma-48
# (ISO/IEC-6429). (Lack of such support is extremely rare, and such # (ISO/IEC-6429). (Lack of such support is extremely rare, and such
# a case would tend to support setf rather than setaf.) # a case would tend to support setf rather than setaf.)
color_prompt=yes color_prompt=yes
else else
color_prompt= color_prompt=
fi fi
fi fi
@ -48,41 +48,51 @@ fi
unset color_prompt force_color_prompt unset color_prompt force_color_prompt
# If this is an xterm set the title to user@host:dir # If this is an xterm set the title to user@host:dir
case "$TERM" in xterm*|rxvt*) case "$TERM" in
xterm*|rxvt*)
PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1" PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1"
;; *) ;;
;; esac *)
;;
esac
# enable color support of ls and also add handy aliases # enable color support of ls and also add handy aliases
if [ -x /usr/bin/dircolors ]; then if [ -x /usr/bin/dircolors ]; then
test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)" test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
alias ls='ls -X --color=auto' alias ls='ls -X --color=auto'
#alias dir='dir --color=auto' alias vdir='vdir --color=auto' #alias dir='dir --color=auto'
#alias vdir='vdir --color=auto'
alias grep='grep --color=auto' alias grep='grep --color=auto'
alias fgrep='fgrep --color=auto' alias fgrep='fgrep --color=auto'
alias egrep='egrep --color=auto' fi alias egrep='egrep --color=auto'
fi
# some more ls aliases # some more ls aliases
alias ll='ls -alF' alias la='ls -A' alias l='ls -CF' alias ll='ls -alF'
alias la='ls -A'
alias l='ls -CF'
# Add an "alert" alias for long running commands. Use like so: # Add an "alert" alias for long running commands. Use like so:
# sleep 10; alert # sleep 10; alert
alias alert='notify-send --urgency=low -i "$([ $? = 0 ] && echo terminal || echo error)" "$(history|tail -n1|sed -e alias alert='notify-send --urgency=low -i "$([ $? = 0 ] && echo terminal || echo error)" "$(history|tail -n1|sed -e '\''s/^\s*[0-9]\+\s*//;s/[;&|]\s*alert$//'\'')"'
'\''s/^\s*[0-9]\+\s*//;s/[;&|]\s*alert$//'\'')"'
# Alias definitions. You may want to put all your additions into a separate file like ~/.bash_aliases, instead of adding # Alias definitions.
# them here directly. See /usr/share/doc/bash-doc/examples in the bash-doc package. # You may want to put all your additions into a separate file like
# ~/.bash_aliases, instead of adding them here directly.
# See /usr/share/doc/bash-doc/examples in the bash-doc package.
if [ -f ~/.bash_aliases ]; then if [ -f ~/.bash_aliases ]; then
. ~/.bash_aliases fi . ~/.bash_aliases
fi
alias ftp='yafc' alias ftp='yafc'
# enable programmable completion features (you don't need to enable this, if it's already enabled in /etc/bash.bashrc and # enable programmable completion features (you don't need to enable
# /etc/profile sources /etc/bash.bashrc). # this, if it's already enabled in /etc/bash.bashrc and /etc/profile
# sources /etc/bash.bashrc).
if [ -f /etc/bash_completion ] && ! shopt -oq posix; then if [ -f /etc/bash_completion ] && ! shopt -oq posix; then
. /etc/bash_completion fi . /etc/bash_completion
fi
export EDITOR=vim export EDITOR=vim

1
vimrc
View File

@ -12,7 +12,6 @@ if has("autocmd")
filetype indent on filetype indent on
filetype plugin on filetype plugin on
set ofu=syntaxcomplete#Complete set ofu=syntaxcomplete#Complete
"autocmd bufenter * if (winnr("$") == 1 && exists("b:NERDTreeType") && b:NERDTreeType == \"primary") | q | endif
endif endif
" basic options " basic options