mirror of
https://github.com/tedkulp/dotfiles
synced 2026-03-05 13:40:18 -05:00
Six months of updates
This commit is contained in:
6
brew
6
brew
@@ -62,6 +62,7 @@ brew install readline
|
||||
brew install reattach-to-user-namespace
|
||||
brew install ruby-install
|
||||
brew install teensy_loader_cli
|
||||
brew install tesseract
|
||||
brew install the_platinum_searcher
|
||||
brew install the_silver_searcher
|
||||
brew install tmux
|
||||
@@ -72,9 +73,4 @@ brew install xz
|
||||
|
||||
brew install https://raw.github.com/falsecz/homebrew-misc/master/Formula/git-wtf.rb
|
||||
|
||||
# At the end, because they require user intervention
|
||||
brew install mongodb
|
||||
brew install postgresql
|
||||
brew install redis
|
||||
|
||||
brew cleanup
|
||||
|
||||
1
cask
1
cask
@@ -20,6 +20,7 @@ if [ -x "$brew_path" ] ; then
|
||||
installcask bettertouchtool
|
||||
installcask crashplan
|
||||
installcask dbvisualizer
|
||||
installcask discord
|
||||
installcask docker-toolbox
|
||||
installcask dropbox
|
||||
installcask gitter
|
||||
|
||||
@@ -1 +1 @@
|
||||
ruby-2.1
|
||||
ruby-2.3
|
||||
|
||||
@@ -76,13 +76,14 @@ bind-key C-j command-prompt -p "join pane from:" "join-pane -s '%%'"
|
||||
bind-key s command-prompt -p "send pane to:" "join-pane -t '%%'"
|
||||
bind-key C-b break-pane -t :
|
||||
|
||||
# Setup 'v' to begin selection as in Vim
|
||||
bind-key -t vi-copy v begin-selection
|
||||
bind-key -t vi-copy y copy-pipe "reattach-to-user-namespace pbcopy"
|
||||
# Copy/paste like vim -- Updated for 2.4
|
||||
bind-key -Tcopy-mode-vi v send -X begin-selection
|
||||
bind-key -Tcopy-mode-vi y send -X copy-pipe-and-cancel "reattach-to-user-namespace pbcopy"
|
||||
bind-key -Tcopy-mode-vi Escape send -X cancel
|
||||
bind-key -Tcopy-mode-vi V send -X rectangle-toggle
|
||||
|
||||
# Update default binding of `Enter` to also use copy-pipe
|
||||
unbind -t vi-copy Enter
|
||||
bind-key -t vi-copy Enter copy-pipe "reattach-to-user-namespace pbcopy"
|
||||
unbind -Tcopy-mode-vi Enter
|
||||
bind-key -Tcopy-mode-vi Enter send -X copy-pipe-and-cancel "reattach-to-user-namespace pbcopy"
|
||||
|
||||
#### COLOUR
|
||||
|
||||
|
||||
32
link/.zshrc
32
link/.zshrc
@@ -11,8 +11,32 @@
|
||||
# fi
|
||||
|
||||
# Source antigen
|
||||
source $(brew --prefix)/share/antigen/antigen.zsh
|
||||
source ~/.antigen.zsh
|
||||
# source $(brew --prefix)/share/antigen/antigen.zsh
|
||||
# source ~/.antigen.zsh
|
||||
|
||||
# load zgen
|
||||
source "${HOME}/.zgen/zgen.zsh"
|
||||
|
||||
if ! zgen saved; then
|
||||
# specify plugins here
|
||||
zgen oh-my-zsh
|
||||
|
||||
# generate the init script from plugins above
|
||||
zgen oh-my-zsh plugins/git
|
||||
zgen oh-my-zsh plugins/sudo
|
||||
zgen oh-my-zsh plugins/command-not-found
|
||||
|
||||
zgen load https://gist.github.com/3750104.git agnoster
|
||||
|
||||
zgen load zsh-users/zsh-syntax-highlighting
|
||||
zgen load zsh-users/zsh-history-substring-search
|
||||
zgen load zsh-users/zsh-autosuggestions
|
||||
|
||||
zgen oh-my-zsh plugins/brew
|
||||
zgen oh-my-zsh plugins/osx
|
||||
|
||||
zgen save
|
||||
fi
|
||||
|
||||
# Run all files in dotfiles source directory
|
||||
if [[ -d "$HOME/dotfiles/source" ]]; then
|
||||
@@ -35,10 +59,8 @@ fi
|
||||
# Customize to your needs...
|
||||
|
||||
export NVM_DIR="/Users/tedkulp/.nvm"
|
||||
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" # This loads nvm
|
||||
[ -s "$(brew --prefix nvm)/nvm.sh" ] && . "$(brew --prefix nvm)/nvm.sh" # This loads nvm
|
||||
|
||||
# setopt no_complete_aliases
|
||||
|
||||
test -e ${HOME}/.iterm2_shell_integration.zsh && source ${HOME}/.iterm2_shell_integration.zsh
|
||||
|
||||
export HOMEBREW_GITHUB_API_TOKEN=80ad9e8581e2506efeaedaa079ae02b50add8821
|
||||
|
||||
Submodule link/vim-config updated: 521a3850ea...ec4522e806
Reference in New Issue
Block a user