Bash updates, VIM color mode
This commit is contained in:
parent
211ea852e4
commit
1ff3984b7b
40
bashrc
40
bashrc
@ -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
|
||||||
|
3
vimrc
3
vimrc
@ -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
|
||||||
@ -94,6 +93,6 @@ imap ,/ </<C-X><C-O>
|
|||||||
:nmap <leader>w :setlocal wrap!<CR>:setlocal wrap?<CR>
|
:nmap <leader>w :setlocal wrap!<CR>:setlocal wrap?<CR>
|
||||||
|
|
||||||
" dem fancy colors
|
" dem fancy colors
|
||||||
" set t_Co=256
|
set t_Co=256
|
||||||
"colorscheme ir_black " for macvim
|
"colorscheme ir_black " for macvim
|
||||||
colorscheme distinguished
|
colorscheme distinguished
|
||||||
|
Loading…
x
Reference in New Issue
Block a user