public
Description: bash, git, vim, irb, rails, sake
Clone URL: git://github.com/mislav/dotfiles.git
OS X compat: update bash stuff, remove twitter plugin for vim
mislav (author)
Mon May 19 07:59:16 -0700 2008
commit  4084ea9d7bff46d551b2201408456acdc33be602
tree    38dcd82bd01976176d51df95d0dc6eebf7f7a1bb
parent  9ab7069758c27b7aa6821c6833c9282bc2de630e
0
bash_aliases 100644 → 100755
0
bash_logout 100644 → 100755
0
bashrc 100644 →
...
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
 
29
30
31
...
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
...
57
58
59
60
61
62
63
64
65
66
67
...
10
11
12
 
 
 
 
 
 
 
13
14
15
16
17
 
 
 
 
18
19
20
21
...
31
32
33
 
 
 
 
 
 
 
 
 
34
35
36
...
38
39
40
 
 
 
 
 
41
42
43
0
@@ -10,22 +10,12 @@ export HISTCONTROL=ignoredups
0
 
0
 export EDITOR=vim
0
 
0
-# check the window size after each command and, if necessary,
0
-# update the values of LINES and COLUMNS.
0
-shopt -s checkwinsize
0
-
0
-# make less more friendly for non-text input files, see lesspipe(1)
0
-[ -x /usr/bin/lesspipe ] && eval "$(lesspipe)"
0
-
0
 # set variable identifying the chroot you work in (used in the prompt below)
0
 if [ -z "$debian_chroot" ] && [ -r /etc/debian_chroot ]; then
0
     debian_chroot=$(cat /etc/debian_chroot)
0
 fi
0
 
0
-# Comment in the above and uncomment this below for a color prompt
0
-# PS1='\e[mwork:\e[0;31m\w\e[m \e[1;37m# '
0
-PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\h\[\033[00m\]:\[\e[0;31m\]\w\[\e[m\]$(__git_ps1 " (%s)") $ '
0
-# PS1=' $ '
0
+PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\h\[\033[00m\]:\[\e[0;31m\]\w\[\e[m\] $ '
0
 
0
 # If this is an xterm set the title to user@host:dir
0
 case "$TERM" in
0
@@ -41,15 +31,6 @@ if [ -f ~/.bash_aliases ]; then
0
     . ~/.bash_aliases
0
 fi
0
 
0
-# enable color support of ls and also add handy aliases
0
-if [ "$TERM" != "dumb" ]; then
0
- eval "`dircolors -b`"
0
- alias ls='ls --color=auto'
0
- alias grep='grep --color=auto'
0
- #alias dir='ls --color=auto --format=vertical'
0
- #alias vdir='ls --color=auto --format=long'
0
-fi
0
-
0
 # enable programmable completion features (you don't need to enable
0
 # this, if it's already enabled in /etc/bash.bashrc and /etc/profile
0
 # sources /etc/bash.bashrc).
0
@@ -57,11 +38,6 @@ if [ -f /etc/bash_completion ]; then
0
     . /etc/bash_completion
0
 fi
0
 
0
-# svk
0
-if [ -f ~/.svk/completion.sh ]; then
0
- . ~/.svk/completion.sh
0
-fi
0
-
0
 if [ -f ~/bin/sake-completion ]; then
0
   complete -C ~/bin/sake-completion -o default sake
0
 fi
0
vimrc 100644 →
...
1
2
3
 
4
5
6
...
1
2
 
3
4
5
6
0
@@ -1,6 +1,6 @@
0
 " Mislav's .vimrc
0
 "
0
-" Thank you evil.che.lu (http://evilchelu.googlecode.com/svn/dotfiles/vim/.vimrc)
0
+" Thank you evil.che.lu (http://github.com/evilchelu/dotfiles/tree/master/dotted/vimrc)
0
 
0
 set nocompatible     " the past is better left in the past
0
 set encoding=utf-8 nobomb " BOM often causes trouble

Comments

    No one has commented yet.