File tree 4 files changed +18
-18
lines changed
4 files changed +18
-18
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ alias .....='cd ../../../..'
13
13
alias po=' popd'
14
14
alias pu=' pushd'
15
15
alias ack=' ack-grep'
16
- alias df=' df -ch'
16
+ # alias df='df -ch'
17
17
alias egrep=' egrep --color=auto'
18
18
alias fgrep=' fgrep --color=auto'
19
19
alias gopen=' gnome-open'
Original file line number Diff line number Diff line change 62
62
if command -v " bash_completion_tmux.sh" > /dev/null; then
63
63
. " bash_completion_tmux.sh"
64
64
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
Original file line number Diff line number Diff line change 9
9
# umask 022
10
10
11
11
# 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
18
18
19
19
# set PATH so it includes user's private bin if it exists
20
20
if [ -d " $HOME /bin" ] ; then
21
21
PATH=" $HOME /bin:$PATH "
22
22
fi
23
23
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
-
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ myManageHook = (composeAll . concat $
43
43
where
44
44
term = [ " Gnome-terminal" , " urxvt" ]
45
45
web = [ " Firefox" , " Google-chrome" ]
46
- docs = [ " Sumatra PDF" ]
46
+ docs = [ " Sumatra PDF" , " djview4 " , " djview " ]
47
47
chat = [ " Pidgin" , " Xchat" ]
48
48
full = [ " SMPlayer" , " MPlayer" ]
49
49
You can’t perform that action at this time.
0 commit comments