Skip to content

Commit

Permalink
Comment out a lot of things
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeremy Hanna committed Jan 24, 2020
1 parent 68e695b commit bcb18e6
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 21 deletions.
10 changes: 5 additions & 5 deletions .vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,19 @@ Plug 'lvht/tagbar-markdown' " tagbar markdown support
Plug 'tpope/vim-surround' " git wrapper gblame
" Plug 'jpalardy/vim-slime' " send line text to a REPL
" --- Git and File utility ---
Plug '/usr/local/opt/fzf' " import Homebrew fzf installation
Plug 'junegunn/fzf.vim' " fzf function wrapper
" Plug '/usr/local/opt/fzf' " import Homebrew fzf installation
" Plug 'junegunn/fzf.vim' " fzf function wrapper
" Plug 'airblade/vim-gitgutter' " gutter for git diff changes
Plug 'tpope/vim-fugitive' " git wrapper gblame
" --- Visuals and syntax ---
Plug 'ntpeters/vim-better-whitespace'
" Plug 'vim-airline/vim-airline'
" --- Ruby ---
" --- GoLang ---
Plug 'fatih/vim-go', { 'do': ':GoUpdateBinaries' } " GoLang editing improvments
" Plug 'fatih/vim-go', { 'do': ':GoUpdateBinaries' } " GoLang editing improvments
" --- React ---
Plug 'maxmellon/vim-jsx-pretty' " syntax highlighting for jsx
Plug 'prettier/vim-prettier', { 'do': 'yarn install' }
" Plug 'maxmellon/vim-jsx-pretty' " syntax highlighting for jsx
" Plug 'prettier/vim-prettier', { 'do': 'yarn install' }
call plug#end()

colorscheme apprentice
Expand Down
32 changes: 16 additions & 16 deletions .zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -15,38 +15,38 @@ zplug check --verbose || zplug install
zplug load

# homebrew : brew installed python
export PATH=/usr/local/bin:/usr/local/share/python:$PATH
# export PATH=/usr/local/bin:/usr/local/share/python:$PATH

# enable chruby and auto switching to .ruby-version
source /usr/local/share/chruby/chruby.sh
source /usr/local/share/chruby/auto.sh
# source /usr/local/share/chruby/chruby.sh
# source /usr/local/share/chruby/auto.sh

# alias tmux to use vim colorscheme instead of iTerm2
alias tmux="TERM=screen-256color-bce tmux"
# alias tmux="TERM=screen-256color-bce tmux"

alias ll="ls -Gal"

# cli-improved suggested tools see: https://remysharp.com/2018/08/23/cli-improved
alias cat='bat'
alias ping='prettyping --nolegend'
alias top="sudo htop" # alias top and fix high sierra bug
alias du="ncdu --color dark -rr -x --exclude .git --exclude node_modules"
alias help='tldr'
# alias cat='bat'
# alias ping='prettyping --nolegend'
# alias top="sudo htop" # alias top and fix high sierra bug
# alias du="ncdu --color dark -rr -x --exclude .git --exclude node_modules"
# alias help='tldr'
# file directory list with display
alias preview="fzf --preview 'bat --color \"always\" {}'"
# alias preview="fzf --preview 'bat --color \"always\" {}'"

# import .fzf key bindings
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh

# Add $HOME/bin to path for custom bash scripts
export PATH=$PATH:$HOME/bin
# export PATH=$PATH:$HOME/bin

# GoPath to source go libs in src
export GOPATH=$HOME/src/go
export PATH=$PATH:$GOPATH/bin
alias gomake='make_new_go_program'
alias goinstall='install_go_program'
alias gorun='run_go_program'
# export GOPATH=$HOME/src/go
# export PATH=$PATH:$GOPATH/bin
# alias gomake='make_new_go_program'
# alias goinstall='install_go_program'
# alias gorun='run_go_program'

make_new_go_program () {
new_project="$1"
Expand Down

0 comments on commit bcb18e6

Please sign in to comment.