fix all the things

This commit is contained in:
Tyrel Souza 2016-07-14 15:15:29 -04:00
parent 021e2b8917
commit 27ea98bdbd
No known key found for this signature in database
GPG Key ID: 2EECB5087209E6A5
7 changed files with 16 additions and 8 deletions

View File

@ -6,7 +6,8 @@ ln -s $(pwd)/gitignore ~/.gitignore
ln -s $(pwd)/hushlogin ~/.hushlogin
ln -s $(pwd)/vim ~/.vim
ln -s $(pwd)/vimrc ~/.vimrc
ln -s $(pwd)/vimrc.bundles ~/.vimrc.bundles
ln -s ~/.config/nvim ~/.vim
ln -s ~/.config/nvim/init.vim ~/.vimrc
ln -s $(pwd)/zshrc ~/.zshrc
ln -s $(pwd)/tyrel.zsh-theme ~/.oh-my-zsh/themes/tyrel.zsh-theme

View File

@ -10,3 +10,4 @@ tags
tmp/**/*
!tmp/cache/.keep
.pre-commit-config.yaml
.ruby-version

View File

@ -1 +1 @@
/Users/tyrelsouza/.vimrc
/home/tsouza/.vimrc

1
vim/nvim Symbolic link
View File

@ -0,0 +1 @@
/home/tsouza/.config/nvim

1
vim/vim Symbolic link
View File

@ -0,0 +1 @@
/home/tsouza/Documents/gitlab/tyrelsouza/dotfiles/vim

7
vimrc
View File

@ -6,6 +6,7 @@ execute pathogen#infect()
syntax on
colorscheme monokai
set noshowmode
set mouse-=a
" Leader
let mapleader = " "
@ -102,12 +103,14 @@ autocmd VimEnter * if argc() == 0 && !exists("s:std_in") | NERDTree | endif
nmap <C-n> :NERDTreeToggle<CR>
autocmd BufWinLeave *.* mkview
autocmd BufWinEnter *.* silent loadview
"autocmd BufWinLeave *.* mkview
"autocmd BufWinEnter *.* silent loadview
autocmd StdinReadPre * let s:std_in=1
hi Normal ctermbg=none
" Local config
if filereadable($HOME . "/.vimrc.local")

9
zshrc
View File

@ -1,6 +1,6 @@
# Path to your oh-my-zsh installation.
export ZSH=$HOME/.oh-my-zsh
plugins=(git brew sudo github django python pip)
plugins=(git brew sudo github django python pip dnf emoji cp vagrant virtualenv nmap rvm)
if [ -n "$SSH_CLIENT" ] || [ -n "$SSH_TTY" ]; then
ZSH_THEME="soliah"
@ -21,8 +21,8 @@ export GOPATH=$HOME/go
export PHP_AUTOCONF="/usr/local/bin/autoconf"
export WORKON_HOME=$HOME/.virtualenvs
export PROJECT_HOME=$HOME/AddGeneProjects
source /usr/local/bin/virtualenvwrapper_lazy.sh
source $HOME/bin/virtualenv-auto-activate.sh
source /usr/bin/virtualenvwrapper.sh
#source $HOME/bin/virtualenv-auto-activate.sh
@ -55,7 +55,6 @@ fi
COMPLETION_WAITING_DOTS="true"
export ADDGENE_CORE_REPO_DIR=/Users/tyrelsouza/AddGeneProjects/addgene-core
# VMware Fusion
if [ -d "/Applications/VMware Fusion.app/Contents/Library" ]; then
@ -87,3 +86,5 @@ if [ -e ~/.zshrc.local ];then
source ~/.zshrc.local
fi
alias vim=nvim
export VAGRANT_DEFAULT_PROVIDER=virtualbox
source $HOME/.profile