Skip to content

Commit

Permalink
Added vim plugin, alphabetized zshrc plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
g-erson committed Aug 25, 2018
1 parent ce359fc commit a6638e0
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 16 deletions.
4 changes: 3 additions & 1 deletion .vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ if exists('g:gui_oni')
set noshowcmd
else
" Statements here
" Plugin 'Valloric/YouCompleteMe' "This is just the client. Install server
Plugin 'Valloric/YouCompleteMe' "This is just the client. Install server
"with ./<plugin location>/install.sh
" --clang-completer
"
Expand All @@ -29,6 +29,7 @@ else
set runtimepath^=~/.vim/bundle/ctrlp.vim
Plugin 'vim-airline/vim-airline'
Plugin 'vim-airline/vim-airline-themes'
Plugin 'ctrlpvim/ctrlp.vim'
endif

Plugin 'ap/vim-css-color'
Expand All @@ -42,6 +43,7 @@ Plugin 'airblade/vim-gitgutter'
Plugin 'vim-ruby/vim-ruby'
Plugin 'peterhoeg/vim-qml'
Plugin 'christoomey/vim-tmux-navigator'
Plugin 'purescript-contrib/purescript-vim'
Plugin 'guns/vim-clojure-static'
Plugin 'posva/vim-vue'

Expand Down
49 changes: 34 additions & 15 deletions .zshrc
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# If you come from bash you might have to change your $PATH.
# export PATH=$HOME/bin:/usr/local/bin:$PATH
zmodload zsh/zprof
autoload -U promptinit; promptinit

# Path to your oh-my-zsh installation.
export ZSH="$HOME/.oh-my-zsh"
export TERM="xterm-256color"
export EDITOR="/usr/local/bin/nvim"


# Set name of the theme to load. Optionally, if you set this to "random"
# it'll load a random theme each time that oh-my-zsh is loaded.
# See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes
Expand Down Expand Up @@ -63,38 +63,45 @@ ZSH_THEME="refined"
# Example format: plugins=(rails git textmate ruby lighthouse)
# Add wisely, as too many plugins slow down shell startup.
plugins=(
brew
colored-man
colorize
docker
docker-compose
django
git
git-extras
git-flow
colored-man
colorize
github
vagrant
virtualenv
pip
python
brew
osx
zsh-syntax-highlighting
node
npm
docker
django
bower
celery
node
sublime
osx
pip
python
sudo
supervisor
tmux
vi-mode
vagrant
virtualenv
web-search
zsh-syntax-highlighting
)

source $ZSH/oh-my-zsh.sh

fpath+=('/usr/local/lib/node_modules/pure-prompt/functions')
autoload -U promptinit; promptinit
prompt pure

# User configuration

bindkey "^P" up-line-or-search
setopt NO_NOMATCH

export PATH=$HOME/Android/Sdk/tools/bin:$PATH
export PATH=$HOME/android-studio/bin:$PATH
# export MANPATH="/usr/local/man:$MANPATH"

# You may need to manually set your language environment
Expand All @@ -121,3 +128,15 @@ setopt NO_NOMATCH
# Example aliases
# alias zshconfig="mate ~/.zshrc"
# alias ohmyzsh="mate ~/.oh-my-zsh"

###-tns-completion-start-###
if [ -f /home/george/.tnsrc ]; then
source /home/george/.tnsrc
fi

export JAVA_HOME="/usr/lib/jvm/java-8-openjdk-amd64"
export ANDROID_HOME="$HOME/Android/Sdk"
export PATH="$ANDROID_HOME/tools:$ANDROID_HOME/platform-tools:$PATH"
export PATH="$HOME/bin:$HOME/.local/bin:$PATH"
export PATH="$HOME/.npm-global/bin/:$PATH"
###-tns-completion-end-###

0 comments on commit a6638e0

Please sign in to comment.