Skip to content

Commit

Permalink
Add scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
aVolpe committed Feb 26, 2018
1 parent 9becce5 commit abfa3e8
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 20 deletions.
1 change: 1 addition & 0 deletions ranger/rifle.conf
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ ext rb = ruby -- "$1"
ext sh = sh -- "$1"
ext php = php -- "$1"
ext js = vim -- "$1"
ext ts = vim -- "$1"

#--------------------------------------------
# Audio without X
Expand Down
15 changes: 9 additions & 6 deletions vim/.vimrc.bundles.local
Original file line number Diff line number Diff line change
Expand Up @@ -38,22 +38,25 @@ UnBundle 'vim-scripts/Latex-Text-Formatter'
UnBundle 'vim-scripts/SQLUtilities'
UnBundle 'vim-voom/VOoM'
UnBundle 'wgurecky/vimSum'
UnBundle 'LaTeX-Box-Team/LaTeX-Box'
UnBundle 'avolpe/vim-simpledb'
UnBundle 'diepm/vim-rest-console'
UnBundle 't9md/vim-choosewin'
UnBundle 'ypid/HTML-AutoCloseTag', { 'name' : 'newAutoCloseTag' }
UnBundle 'wgurecky/vimSum'

Plugin 'LaTeX-Box-Team/LaTeX-Box'
Plugin 'PProvost/vim-markdown-jekyll'
Plugin 'airblade/vim-gitgutter'
Plugin 'avolpe/vim-simpledb'
Plugin 'diepm/vim-rest-console'
Plugin 'ekalinin/Dockerfile.vim'
Plugin 'junegunn/vim-peekaboo'
Plugin 'mhinz/vim-startify'
Plugin 'onur/vim-motivate'
Plugin 'sgur/ctrlp-extensions.vim'
Plugin 't9md/vim-choosewin'
Plugin 'tpope/vim-unimpaired'
Plugin 'vim-scripts/argtextobj.vim'
Plugin 'vimwiki/vimwiki'
Plugin 'wgurecky/vimSum'
Plugin 'ypid/HTML-AutoCloseTag', { 'name' : 'newAutoCloseTag' }
Plugin 'zenorocha/dracula-theme', {'rtp': 'vim/'}
Plugin 'leafgarland/typescript-vim'
Plugin 'Shougo/vimproc.vim'
Plugin 'Quramy/tsuquyomi'

30 changes: 16 additions & 14 deletions zsh/.zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ ZSH=$HOME/.oh-my-zsh
# time that oh-my-zsh is loaded
ZSH_THEME="alanpeabody"


# Example aliases
# alias zshconfig="mate ~/.zshrc"
# alias ohmyzsh="mate ~/.oh-my-zsh"
Expand Down Expand Up @@ -43,40 +42,43 @@ COMPLETION_WAITING_DOTS="true"
# Example format: plugins=(rails git textmate ruby lighthouse)
plugins=(zsh-syntax-highlighting zsh-alias-tips mvn git docker docker-compose zsh-autosuggestions)

fpath=($HOME/.oh-my-zsh/custom/autocomplete/zsh-completions-master/src/ $fpath)

source $ZSH/oh-my-zsh.sh

fpath=($HOME/.oh-my-zsh/custom/autocomplete/zsh-completions-master/src/ $fpath)
rm -f ~/.zcompdump; compinit
export EDITOR=vim

# Customize to your needs...

export MAN_POSIXLY_CORRECT=1

#[ -f ~/.last_dir ] && cd `cat ~/.last_dir`
# Only use the last dir if the current dir is home
[ "${PWD##/Users/arturovolpe/}" "==" "${PWD}" ] && lcd

LS_COLORS="$LS_COLORS:di=1;92:ln=4:tw=4;35:ow=1;35:" ; export LS_COLORS
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh


if which ruby >/dev/null && which gem >/dev/null; then
PATH="$(ruby -rubygems -e 'puts Gem.user_dir')/bin:$PATH"
fi
#if which ruby >/dev/null && which gem >/dev/null; then
#PATH="$(ruby -rubygems -e 'puts Gem.user_dir')/bin:$PATH"
#fi

setopt correct_all
bindkey "^Q" push-input


# Configuración de fzf
export FZF_DEFAULT_COMMAND='ag -l -g ""'
export ANDROID_HOME=~/Library/Android/sdk/

# Arregla los colores del auto complete
#zstyle ':completion:*' list-colors "${(@s.:.)LS_COLORS}"
#autoload -Uz compinit
#compinit

export PATH="/usr/local/bin:$PATH"
export PATH="$PATH:$HOME/.rvm/bin:$(yarn global bin)" # Add RVM to PATH for scripting
export PATH="/Users/arturovolpe/.gem/ruby/2.4.0:/usr/local/bin:$PATH:$HOME/.rvm/bin" # Add RVM to PATH for scripting
ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE=fg=247

skip_global_compinit=1
export LC_ALL=es_ES.UTF-8

# The next line updates PATH for the Google Cloud SDK.
if [ -f '/Users/arturovolpe/.programs/google-cloud-sdk/path.zsh.inc' ]; then source '/Users/arturovolpe/.programs/google-cloud-sdk/path.zsh.inc'; fi

# The next line enables shell command completion for gcloud.
if [ -f '/Users/arturovolpe/.programs/google-cloud-sdk/completion.zsh.inc' ]; then source '/Users/arturovolpe/.programs/google-cloud-sdk/completion.zsh.inc'; fi

0 comments on commit abfa3e8

Please sign in to comment.