diff --git a/bash_profile b/bash_profile index 13daa15..fee29e5 100644 --- a/bash_profile +++ b/bash_profile @@ -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 @@ -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 diff --git a/editorconfig b/editorconfig new file mode 100644 index 0000000..2ebf6b2 --- /dev/null +++ b/editorconfig @@ -0,0 +1,3 @@ +[*] +end_of_line = lf +insert_final_newline = true \ No newline at end of file diff --git a/prompt b/prompt index 2a87fb9..a3a0e31 100644 --- a/prompt +++ b/prompt @@ -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 diff --git a/tmux.conf b/tmux.conf index 09cc168..f46ff97 100644 --- a/tmux.conf +++ b/tmux.conf @@ -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' diff --git a/vimrc b/vimrc index 01e380f..87ce4e2 100644 --- a/vimrc +++ b/vimrc @@ -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()