1
0
mirror of https://github.com/balkian/dotfiles.git synced 2024-11-21 19:52:29 +00:00

pyenv and others

This commit is contained in:
J. Fernando Sánchez 2015-04-13 10:47:46 +02:00
parent 95427a4a87
commit 9a934dc351
6 changed files with 26 additions and 15 deletions

View File

@ -49,6 +49,8 @@ RUN chsh dev -s /usr/bin/zsh
RUN chown -R dev: /home/dev RUN chown -R dev: /home/dev
RUN chown -R dev: /usr/local/ RUN chown -R dev: /usr/local/
RUN echo "dev ALL = NOPASSWD: ALL" >> /etc/sudoers
USER dev
WORKDIR /home/dev/app WORKDIR /home/dev/app
ENTRYPOINT ["zsh"] ENTRYPOINT ["zsh"]
USER dev

View File

@ -11,7 +11,7 @@ Xft.hintstyle: hintfull
!------------------------------------------------------------------------------- !-------------------------------------------------------------------------------
! Emacs settings ! Emacs settings
!------------------------------------------------------------------------------- !-------------------------------------------------------------------------------
!Emacs.font: DejaVu Sans Mono-10 Emacs.font: DejaVu Sans Mono-10
!------------------------------------------------------------------------------- !-------------------------------------------------------------------------------
! URxvt settings ! URxvt settings

View File

@ -200,6 +200,7 @@
(show-paren-mode t) (show-paren-mode t)
(yas-global-mode 1) (yas-global-mode 1)
(guide-key-mode 1) (guide-key-mode 1)
(scroll-bar-mode 0)
;;; Specific modes ;;; Specific modes
;; (autoload 'markdown-mode "markdown-mode" ;; (autoload 'markdown-mode "markdown-mode"

@ -1 +1 @@
Subproject commit 5663d3a1fe986303ba835fb8fc524236e8af72c3 Subproject commit 6701c46bca7347c9de92d37d64957db978927623

10
zshenv Normal file
View 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
View File

@ -17,7 +17,7 @@ ZSH_THEME="balkian"
# alias ohmyzsh="mate ~/.oh-my-zsh" # alias ohmyzsh="mate ~/.oh-my-zsh"
# Set to this to use case-sensitive completion # Set to this to use case-sensitive completion
# CASE_SENSITIVE="true" CASE_SENSITIVE="true"
# Comment this out to disable weekly auto-update checks # Comment this out to disable weekly auto-update checks
# DISABLE_AUTO_UPDATE="true" # DISABLE_AUTO_UPDATE="true"
@ -32,12 +32,12 @@ export UPDATE_ZSH_DAYS=13
# DISABLE_AUTO_TITLE="true" # DISABLE_AUTO_TITLE="true"
# Uncomment following line if you want red dots to be displayed while waiting for completion # 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/*) # 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/ # Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/
# Example format: plugins=(rails git textmate ruby lighthouse) # 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 source $ZSH/oh-my-zsh.sh
@ -52,6 +52,7 @@ export ALTERNATE_EDITOR=/usr/bin/vim EDITOR="vim" VISUAL="vim"
# Docker goodies # Docker goodies
alias drm="docker rm" alias drm="docker rm"
alias drun="docker run"
alias drmi="docker rmi" alias drmi="docker rmi"
alias dps="docker ps" alias dps="docker ps"
alias dpi="docker images" 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 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 PYTHONSTARTUP=~/.pythonrc.py
export PYTHONSTARTUP 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 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'
export PATH="$PATH:/usr/local/heroku/bin:$HOME/.cabal/bin"
### Virtualenvwrapper
export WORKON_HOME=~/.virtualenvs
setopt extended_glob setopt extended_glob
setopt menu_complete
### Get RVM to work with zsh
[[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm"
### Agent forwarding in tmux too ### Agent forwarding in tmux too
if [ ! -z "$SSH_AUTH_SOCK" -a "$SSH_AUTH_SOCK" != "$HOME/.ssh/ssh_auth_sock" ] ; then if [ ! -z "$SSH_AUTH_SOCK" -a "$SSH_AUTH_SOCK" != "$HOME/.ssh/ssh_auth_sock" ] ; then