mirror of
https://github.com/balkian/dotfiles.git
synced 2024-11-21 11:42:28 +00:00
pyenv and others
This commit is contained in:
parent
95427a4a87
commit
9a934dc351
@ -49,6 +49,8 @@ RUN chsh dev -s /usr/bin/zsh
|
||||
RUN chown -R dev: /home/dev
|
||||
RUN chown -R dev: /usr/local/
|
||||
|
||||
RUN echo "dev ALL = NOPASSWD: ALL" >> /etc/sudoers
|
||||
|
||||
USER dev
|
||||
WORKDIR /home/dev/app
|
||||
ENTRYPOINT ["zsh"]
|
||||
USER dev
|
||||
|
@ -11,7 +11,7 @@ Xft.hintstyle: hintfull
|
||||
!-------------------------------------------------------------------------------
|
||||
! Emacs settings
|
||||
!-------------------------------------------------------------------------------
|
||||
!Emacs.font: DejaVu Sans Mono-10
|
||||
Emacs.font: DejaVu Sans Mono-10
|
||||
|
||||
!-------------------------------------------------------------------------------
|
||||
! URxvt settings
|
||||
|
@ -200,6 +200,7 @@
|
||||
(show-paren-mode t)
|
||||
(yas-global-mode 1)
|
||||
(guide-key-mode 1)
|
||||
(scroll-bar-mode 0)
|
||||
|
||||
;;; Specific modes
|
||||
;; (autoload 'markdown-mode "markdown-mode"
|
||||
|
@ -1 +1 @@
|
||||
Subproject commit 5663d3a1fe986303ba835fb8fc524236e8af72c3
|
||||
Subproject commit 6701c46bca7347c9de92d37d64957db978927623
|
10
zshenv
Normal file
10
zshenv
Normal file
@ -0,0 +1,10 @@
|
||||
### Added by the Heroku Toolbelt
|
||||
export PATH="$PATH:/usr/local/heroku/bin:$HOME/.cabal/bin"
|
||||
|
||||
### Virtualenvwrapper
|
||||
export WORKON_HOME=~/.virtualenvs
|
||||
|
||||
|
||||
#export PYENV_ROOT="$HOME/.pyenv"
|
||||
#export PATH="$PYENV_ROOT/bin:$PATH"
|
||||
#eval "$(pyenv init -)"
|
22
zshrc
22
zshrc
@ -17,7 +17,7 @@ ZSH_THEME="balkian"
|
||||
# alias ohmyzsh="mate ~/.oh-my-zsh"
|
||||
|
||||
# Set to this to use case-sensitive completion
|
||||
# CASE_SENSITIVE="true"
|
||||
CASE_SENSITIVE="true"
|
||||
|
||||
# Comment this out to disable weekly auto-update checks
|
||||
# DISABLE_AUTO_UPDATE="true"
|
||||
@ -32,12 +32,12 @@ export UPDATE_ZSH_DAYS=13
|
||||
# DISABLE_AUTO_TITLE="true"
|
||||
|
||||
# Uncomment following line if you want red dots to be displayed while waiting for completion
|
||||
# COMPLETION_WAITING_DOTS="true"
|
||||
COMPLETION_WAITING_DOTS="true"
|
||||
|
||||
# Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*)
|
||||
# Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/
|
||||
# Example format: plugins=(rails git textmate ruby lighthouse)
|
||||
plugins=(git colored-man virtualenvwrapper cp python wd systemadmin pass)
|
||||
plugins=(git gitfast colored-man virtualenvwrapper cp python wd systemadmin pass)
|
||||
|
||||
source $ZSH/oh-my-zsh.sh
|
||||
|
||||
@ -52,6 +52,7 @@ export ALTERNATE_EDITOR=/usr/bin/vim EDITOR="vim" VISUAL="vim"
|
||||
|
||||
# Docker goodies
|
||||
alias drm="docker rm"
|
||||
alias drun="docker run"
|
||||
alias drmi="docker rmi"
|
||||
alias dps="docker ps"
|
||||
alias dpi="docker images"
|
||||
@ -68,20 +69,17 @@ function newdev () {
|
||||
docker run -v $PWD:/usr/src/app -t -i --name $1 -h $1 balkian/devmachine
|
||||
}
|
||||
|
||||
_docker # Force the load of autocompletion for docker
|
||||
compdef __docker_containers da
|
||||
compdef __ps drma
|
||||
|
||||
PYTHONSTARTUP=~/.pythonrc.py
|
||||
export PYTHONSTARTUP
|
||||
ssh-add -l 2>&1 > /dev/null || alias ssh='ssh-add -l >/dev/null || ssh-add && unalias ssh; ssh'; alias mosh='ssh-add -l >/dev/null || ssh-add && unalias mosh; mosh'
|
||||
|
||||
### Added by the Heroku Toolbelt
|
||||
export PATH="$PATH:/usr/local/heroku/bin:$HOME/.cabal/bin"
|
||||
|
||||
### Virtualenvwrapper
|
||||
export WORKON_HOME=~/.virtualenvs
|
||||
ssh-add -l > /dev/null 2>&1 || alias ssh='ssh-add -l >/dev/null || ssh-add && unalias ssh; ssh'; alias mosh='ssh-add -l >/dev/null || ssh-add && unalias mosh; mosh'
|
||||
|
||||
setopt extended_glob
|
||||
|
||||
### Get RVM to work with zsh
|
||||
[[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm"
|
||||
setopt menu_complete
|
||||
|
||||
### Agent forwarding in tmux too
|
||||
if [ ! -z "$SSH_AUTH_SOCK" -a "$SSH_AUTH_SOCK" != "$HOME/.ssh/ssh_auth_sock" ] ; then
|
||||
|
Loading…
Reference in New Issue
Block a user