Skip to content

Commit f352304

Browse files
committed
Merge branch 'master' of github.com:shurane/dotfiles
2 parents 85199dc + b2ecb83 commit f352304

File tree

4 files changed

+18
-18
lines changed

4 files changed

+18
-18
lines changed

.bash_aliases

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ alias .....='cd ../../../..'
1313
alias po='popd'
1414
alias pu='pushd'
1515
alias ack='ack-grep'
16-
alias df='df -ch'
16+
#alias df='df -ch'
1717
alias egrep='egrep --color=auto'
1818
alias fgrep='fgrep --color=auto'
1919
alias gopen='gnome-open'

.bashrc

+10
Original file line numberDiff line numberDiff line change
@@ -62,3 +62,13 @@ fi
6262
if command -v "bash_completion_tmux.sh" >/dev/null; then
6363
. "bash_completion_tmux.sh"
6464
fi
65+
66+
# pip bash completion start
67+
_pip_completion()
68+
{
69+
COMPREPLY=( $( COMP_WORDS="${COMP_WORDS[*]}" \
70+
COMP_CWORD=$COMP_CWORD \
71+
PIP_AUTO_COMPLETE=1 $1 ) )
72+
}
73+
complete -o default -F _pip_completion pip
74+
# pip bash completion end

.profile

+6-16
Original file line numberDiff line numberDiff line change
@@ -9,25 +9,15 @@
99
#umask 022
1010

1111
# if running bash
12-
if [ -n "$BASH_VERSION" ]; then
13-
# include .bashrc if it exists
14-
if [ -f "$HOME/.bashrc" ]; then
15-
. "$HOME/.bashrc"
16-
fi
17-
fi
12+
#if [ -n "$BASH_VERSION" ]; then
13+
## include .bashrc if it exists
14+
#if [ -f "$HOME/.bashrc" ]; then
15+
#. "$HOME/.bashrc"
16+
#fi
17+
#fi
1818

1919
# set PATH so it includes user's private bin if it exists
2020
if [ -d "$HOME/bin" ] ; then
2121
PATH="$HOME/bin:$PATH"
2222
fi
2323

24-
# pip bash completion start
25-
_pip_completion()
26-
{
27-
COMPREPLY=( $( COMP_WORDS="${COMP_WORDS[*]}" \
28-
COMP_CWORD=$COMP_CWORD \
29-
PIP_AUTO_COMPLETE=1 $1 ) )
30-
}
31-
complete -o default -F _pip_completion pip
32-
# pip bash completion end
33-

.xmonad/xmonad.hs

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ myManageHook = (composeAll . concat $
4343
where
4444
term = [ "Gnome-terminal", "urxvt" ]
4545
web = [ "Firefox", "Google-chrome" ]
46-
docs = [ "Sumatra PDF" ]
46+
docs = [ "Sumatra PDF", "djview4", "djview" ]
4747
chat = [ "Pidgin", "Xchat" ]
4848
full = [ "SMPlayer", "MPlayer" ]
4949

0 commit comments

Comments
 (0)