Skip to content

Commit

Permalink
Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Victor Castell committed Dec 28, 2017
1 parent e1b2ae7 commit 9539cf3
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 6 deletions.
11 changes: 9 additions & 2 deletions bash_profile
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,12 @@ if [ -e "/usr/local/bin/direnv" ]; then
fi

export HOMEBREW_CASK_OPTS="--appdir=/Applications"
#alias vim=nvim

#gpg-agent Pretty good changelog https://www.gnupg.org/faq/whats-new-in-2.1.html
#This step is not necesary, but due to the outdated state of gpg libs in vautl-tec, we need to be sure that the agent is running
eval `gpg-agent --daemon 2>/dev/null`
# SSH_AUTH_SOCK is autoexported in the previous eval (if enable-ssh-support option is present)
export GPG_AGENT_INFO=${HOME}/.gnupg/S.gpg-agent:66568:1
export GPG_TTY=$(tty)

if [ -d "$HOME/src/github.com/jobandtalent/system/script" ]; then
Expand All @@ -66,4 +70,7 @@ if [ -d "/Applications/Visual Studio Code.app" ]; then
export PATH="$PATH:/Applications/Visual Studio Code.app/Contents/Resources/app/bin"
fi

export PATH="$PATH:~/Library/Python/2.7/bin"
#export PATH="$PATH:~/Library/Python/2.7/bin"
export PATH="/usr/local/opt/python/libexec/bin:$PATH"

export OBJC_DISABLE_INITIALIZE_FORK_SAFETY=YES
3 changes: 3 additions & 0 deletions editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[*]
end_of_line = lf
insert_final_newline = true
2 changes: 2 additions & 0 deletions prompt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
# Bunch-o-predefined colors. Makes reading code easier than escape sequences.
# I don't remember where I found this. o_O

source ~/.git-prompt.sh

# Reset
Color_Off="\[\033[0m\]" # Text Reset

Expand Down
2 changes: 1 addition & 1 deletion tmux.conf
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ set -g visual-activity on

source '/Users/victorcoder/Library/Python/2.7/lib/python/site-packages/powerline/bindings/tmux/powerline.conf'

set -g status-interval 0
#set -g status-interval 0

# List of plugins
set -g @plugin 'tmux-plugins/tpm'
Expand Down
6 changes: 3 additions & 3 deletions vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,16 @@ Plug 'tpope/vim-vividchalk'
Plug 'vim-ruby/vim-ruby'
Plug 'mileszs/ack.vim'
Plug 'vim-scripts/tComment'
" Plug 'scrooloose/syntastic'
Plug 'Townk/vim-autoclose'
" Plug 'Townk/vim-autoclose'
Plug 'fatih/vim-go'
Plug 'bling/vim-airline'
Plug 'chase/vim-ansible-yaml'
Plug 'altercation/vim-colors-solarized'
Plug 'kien/ctrlp.vim'
Plug 'Valloric/YouCompleteMe', { 'do': './install.py' }
Plug 'benekastah/neomake'
Plug 'rust-lang/rust.vim'
Plug 'hashivim/vim-terraform'
Plug 'tpope/vim-repeat'

" Add plugins to &runtimepath
call plug#end()
Expand Down

0 comments on commit 9539cf3

Please sign in to comment.