Skip to content

Commit

Permalink
Bunch of updates
Browse files Browse the repository at this point in the history
  • Loading branch information
DVG committed May 23, 2021
1 parent 94c845a commit d39ff79
Show file tree
Hide file tree
Showing 13 changed files with 40 additions and 186 deletions.
23 changes: 0 additions & 23 deletions bin/apple-pencil

This file was deleted.

81 changes: 0 additions & 81 deletions bin/boot2docker-depowify

This file was deleted.

66 changes: 0 additions & 66 deletions bin/boot2docker-powify

This file was deleted.

7 changes: 7 additions & 0 deletions bin/docker-nuke
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/usr/bin/env bash

echo "Killing Volumes"
docker volume prune -f

echo "Killing everything else"
docker system prune -f
3 changes: 3 additions & 0 deletions bin/kn-highlight-light
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash

pbpaste | highlight -O rtf --line-numbers --font Hack --style base16/tomorrow --src-lang ruby | pbcopy
1 change: 1 addition & 0 deletions docker/aliasees.zsh
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
alias dc=docker compose
6 changes: 6 additions & 0 deletions docker/install.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
which docker > /dev/null

which -s docker
if [[ $? != 0 ]] ; then
brew install --cask docker
fi
3 changes: 2 additions & 1 deletion fonts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@ brew tap homebrew/cask-fonts

brew install font-victor-mono
brew install font-hack
brew install font-inconsolata
brew install font-inconsolata
brew install font-inter
4 changes: 2 additions & 2 deletions ruby/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ git clone https://github.com/sstephenson/rbenv-gem-rehash.git ~/.rbenv/plugins/r
source $(dirname $0)/path.zsh
source $(dirname $0)/rbenv.zsh

rbenv install 2.2.0
rbenv global 2.2.0
rbenv install 2.7.1
rbenv global 2.7.1

gem install bundler
17 changes: 17 additions & 0 deletions scripts/install
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,22 @@ set -e

cd "$(dirname $0)"/..

xcode-select -p 1>/dev/null
if [[ $? != 0 ]] ; then
# Install XCode Command Line Tools
xcode-select --install
else
echo "macOS Command Line Tools already installed"
fi

# Install homebrew if it's not here
which -s brew
if [[ $? != 0 ]] ; then
# Install Homebrew
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
else
brew update
fi

# find the installers and run them iteratively
find . -name install.sh | while read installer ; do sh -c "${installer}" ; done
1 change: 1 addition & 0 deletions system/editor.zsh
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export EDITOR='code'
1 change: 1 addition & 0 deletions tmux/aliases.zsh
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
alias terminal-notifier='reattach-to-user-namespace terminal-notifier'
alias mux=tmuxinator
13 changes: 0 additions & 13 deletions tmux/tmux.conf.symlink
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
# Powerline
###########################
run-shell "powerline-daemon -q"
source ~/.powerline/powerline/bindings/tmux/powerline.conf

###########################
# Key Bindings
Expand Down Expand Up @@ -47,9 +46,6 @@ set -g default-terminal "screen-256color"
# Status Bar
##########################

# enable UTF-8 support in status bar
set -g status-utf8 on

# set refresh interval for status bar
set -g status-interval 10

Expand All @@ -65,12 +61,3 @@ set -g status-left '#[fg=colour231, bg=colour31, bold] #S #[fg=colour31, bg=blac
set -g status-fg white
# highlight current window
set-window-option -g window-status-current-format "#[fg=colour235, bg=colour31, bold]#[fg=colour255, bg=colour31, bold] #I  #W #[fg=colour31, bg=colour235]"

# set color of active pane
set -g pane-border-fg colour235
set -g pane-border-bg black
set -g pane-active-border-fg green
set -g pane-active-border-bg black

# source local configuration
source-file ~/.tmux.local.conf

0 comments on commit d39ff79

Please sign in to comment.