mirror of
https://github.com/kremalicious/dotfiles.git
synced 2024-11-22 01:37:14 +01:00
cleanup
This commit is contained in:
parent
5fd7a65e34
commit
cfa1231b94
@ -1,11 +1,9 @@
|
|||||||
|
dist: xenial
|
||||||
language: bash
|
language: bash
|
||||||
|
|
||||||
# Use container-based infrastructure for quicker build start-up
|
|
||||||
sudo: false
|
|
||||||
|
|
||||||
before_install:
|
before_install:
|
||||||
- sudo apt-get -qq update
|
- sudo apt-get -qq update
|
||||||
- sudo apt-get install shellcheck
|
- sudo apt-get install -y shellcheck
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- bash -c 'shopt -s globstar; shellcheck **/bash*'
|
- bash -c 'shopt -s globstar; shellcheck **/bash*'
|
||||||
|
@ -11,6 +11,7 @@ alias ..="cd .."
|
|||||||
alias ...="cd ../.."
|
alias ...="cd ../.."
|
||||||
alias ~="cd ~"
|
alias ~="cd ~"
|
||||||
|
|
||||||
|
alias f='open .'
|
||||||
alias c='/Applications/Visual\ Studio\ Code.app/Contents/Resources/app/bin/code .'
|
alias c='/Applications/Visual\ Studio\ Code.app/Contents/Resources/app/bin/code .'
|
||||||
|
|
||||||
# Update All The Things
|
# Update All The Things
|
||||||
@ -21,10 +22,10 @@ alias ip="dig +short myip.opendns.com @resolver1.opendns.com"
|
|||||||
alias localip="ipconfig getifaddr en1"
|
alias localip="ipconfig getifaddr en1"
|
||||||
|
|
||||||
# Copy SSH public key to pasteboard
|
# Copy SSH public key to pasteboard
|
||||||
alias pubkey="more ~/.ssh/id_rsa.pub | pbcopy | printf '\$(tput setaf 64)✓ Public SSH key copied to pasteboard.\$(tput sgr0)\n'"
|
alias pubkey='more ~/.ssh/id_rsa.pub | pbcopy | printf "✓ Public SSH key copied to pasteboard.\n"'
|
||||||
|
|
||||||
# Copy GPG public key to pasteboard
|
# Copy GPG public key to pasteboard
|
||||||
alias gpgpubkey="gpg --export --armor 0xDD7831FC | pbcopy | printf '\$(tput setaf 64)✓ Public GPG key copied to pasteboard.\$(tput sgr0)\n'"
|
alias gpgpubkey='gpg --export --armor $GPG_KEY_ID | pbcopy | printf "✓ Public GPG key copied to pasteboard.\n"'
|
||||||
|
|
||||||
# Recursively delete `.DS_Store` files
|
# Recursively delete `.DS_Store` files
|
||||||
alias cleanup="find . -type f -name '*.DS_Store' -ls -delete"
|
alias cleanup="find . -type f -name '*.DS_Store' -ls -delete"
|
||||||
|
@ -17,5 +17,9 @@ export LSCOLORS=gxfxcxdxbxegedabagacad
|
|||||||
# export PIP_DOWNLOAD_CACHE=$HOME/.pip/cache
|
# export PIP_DOWNLOAD_CACHE=$HOME/.pip/cache
|
||||||
|
|
||||||
# go
|
# go
|
||||||
# export GOPATH=$HOME/.go
|
export GOPATH=$HOME/.go
|
||||||
# export GOROOT=/usr/local/opt/go/libexec
|
export GOROOT=/usr/local/opt/go/libexec
|
||||||
|
|
||||||
|
# ffi
|
||||||
|
export LDFLAGS="-L/usr/local/opt/libffi/lib"
|
||||||
|
export PKG_CONFIG_PATH="/usr/local/opt/libffi/lib/pkgconfig"
|
||||||
|
@ -8,8 +8,10 @@ declare -a dirs_to_prepend=(
|
|||||||
"/usr/local/bin" # Ensure that this bin always takes precedence over `/usr/bin`
|
"/usr/local/bin" # Ensure that this bin always takes precedence over `/usr/bin`
|
||||||
# "$(brew --prefix node)/bin" # Add npm/yarn-installed package bin
|
# "$(brew --prefix node)/bin" # Add npm/yarn-installed package bin
|
||||||
"$(brew --prefix openssl)/bin" # Add newer OpenSSL
|
"$(brew --prefix openssl)/bin" # Add newer OpenSSL
|
||||||
# "$GOPATH/bin"
|
"$(brew --prefix ruby)/bin"
|
||||||
# "$GOROOT/bin"
|
"/usr/local/lib/ruby/gems/2.5.0/bin"
|
||||||
|
"$GOPATH/bin"
|
||||||
|
"$GOROOT/bin"
|
||||||
"$HOME/.bin"
|
"$HOME/.bin"
|
||||||
# "$HOME/.rvm/bin"
|
# "$HOME/.rvm/bin"
|
||||||
)
|
)
|
||||||
|
19
bash_profile
19
bash_profile
@ -60,10 +60,22 @@ shopt -s checkwinsize
|
|||||||
# Automatically trim long paths in the prompt (requires Bash 4.x)
|
# Automatically trim long paths in the prompt (requires Bash 4.x)
|
||||||
PROMPT_DIRTRIM=4
|
PROMPT_DIRTRIM=4
|
||||||
|
|
||||||
|
# Enable some Bash 4 features when possible:
|
||||||
|
# * `autocd`, e.g. `**/qux` will enter `./foo/bar/baz/qux`
|
||||||
|
# * Recursive globbing, e.g. `echo **/*.txt`
|
||||||
|
for option in autocd globstar; do
|
||||||
|
shopt -s "$option" 2> /dev/null;
|
||||||
|
done
|
||||||
|
|
||||||
# Add tab completion for many Bash commands
|
# Add tab completion for many Bash commands
|
||||||
|
if command -v brew &> /dev/null && [ -f "$(brew --prefix)/share/bash-completion/bash_completion" ]; then
|
||||||
|
source "$(brew --prefix)/share/bash-completion/bash_completion";
|
||||||
|
elif [ -f /etc/bash_completion ]; then
|
||||||
|
source /etc/bash_completion;
|
||||||
|
fi
|
||||||
|
|
||||||
if type brew 2&>/dev/null; then
|
if type brew 2&>/dev/null; then
|
||||||
for completion_file in $(brew --prefix)/etc/bash_completion.d/*; do
|
for completion_file in "$(brew --prefix)"/etc/bash_completion.d/*; do
|
||||||
# shellcheck disable=SC1091
|
|
||||||
source "$completion_file"
|
source "$completion_file"
|
||||||
done
|
done
|
||||||
fi
|
fi
|
||||||
@ -105,7 +117,8 @@ complete -C aws_completer aws
|
|||||||
|
|
||||||
if [ -s "$HOME/.nvm" ]; then
|
if [ -s "$HOME/.nvm" ]; then
|
||||||
export NVM_DIR="$HOME/.nvm"
|
export NVM_DIR="$HOME/.nvm"
|
||||||
. "/usr/local/opt/nvm/nvm.sh"
|
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
|
||||||
|
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# ----------------------------------------------------------------------
|
# ----------------------------------------------------------------------
|
||||||
|
@ -30,13 +30,15 @@ brew install \
|
|||||||
wget \
|
wget \
|
||||||
gpg \
|
gpg \
|
||||||
nvm \
|
nvm \
|
||||||
|
pandoc \
|
||||||
pinentry-mac \
|
pinentry-mac \
|
||||||
openssl \
|
openssl \
|
||||||
tor \
|
tor \
|
||||||
|
python \
|
||||||
rclone \
|
rclone \
|
||||||
rsync \
|
rsync \
|
||||||
|
ruby \
|
||||||
shellcheck \
|
shellcheck \
|
||||||
yarn \
|
|
||||||
ipfs \
|
ipfs \
|
||||||
clamav
|
clamav
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
set e
|
set e
|
||||||
|
|
||||||
# list of files/folders to symlink in homedir
|
# list of files/folders to symlink in homedir
|
||||||
FILES="bash_aliases bashrc bash_profile bash_paths bash_prompt bash_exports gemrc gitconfig gitignore hushlogin inputrc private npmrc bin tmux.conf vimrc"
|
FILES="bash_aliases bashrc bash_profile bash_paths bash_prompt bash_exports gitconfig gitignore hushlogin inputrc private bin tmux.conf vimrc"
|
||||||
|
|
||||||
# ----------------------------------------------------------------------
|
# ----------------------------------------------------------------------
|
||||||
# create the private file first, will be symlinked but ignored by git
|
# create the private file first, will be symlinked but ignored by git
|
||||||
@ -61,13 +61,13 @@ echo " ✓ done$(tput sgr0)"
|
|||||||
# Ruby
|
# Ruby
|
||||||
# ----------------------------------------------------------------------
|
# ----------------------------------------------------------------------
|
||||||
|
|
||||||
echo "$(tput setaf 136) Ruby all the things. "
|
# echo "$(tput setaf 136) Ruby all the things. "
|
||||||
echo "=============================================$(tput sgr0)"
|
# echo "=============================================$(tput sgr0)"
|
||||||
|
|
||||||
./bin/install-ruby.sh
|
# ./bin/install-ruby.sh
|
||||||
|
|
||||||
echo "$(tput setaf 64)---------------------------------------------"
|
# echo "$(tput setaf 64)---------------------------------------------"
|
||||||
echo " ✓ done$(tput sgr0)"
|
# echo " ✓ done$(tput sgr0)"
|
||||||
|
|
||||||
echo "$(tput setaf 64)============================================="
|
echo "$(tput setaf 64)============================================="
|
||||||
echo " ✓ all done"
|
echo " ✓ all done"
|
||||||
|
@ -1,27 +0,0 @@
|
|||||||
#!/usr/bin/env bash
|
|
||||||
#
|
|
||||||
#
|
|
||||||
# Prerequisite:
|
|
||||||
# rclone configured with:
|
|
||||||
# - remote Amazon Cloud Drive named `amazon`
|
|
||||||
# - remote AWS S3 named `s3`
|
|
||||||
#
|
|
||||||
# brew install rclone
|
|
||||||
# rclone config
|
|
||||||
#
|
|
||||||
# http://rclone.org/commands/rclone_copy/
|
|
||||||
# http://rclone.org/commands/rclone_sync/
|
|
||||||
|
|
||||||
DEFAULTS_AMAZON='--exclude .DS_Store'
|
|
||||||
|
|
||||||
# Sync up Movies
|
|
||||||
rclone sync "$MOVIES_DIR" amazon:/Movies "$DEFAULTS_AMAZON"
|
|
||||||
|
|
||||||
# Sync up TV Shows
|
|
||||||
rclone sync "$TVSHOWS_DIR" amazon:"/TV Shows" "$DEFAULTS_AMAZON"
|
|
||||||
|
|
||||||
# Sync up iTunes
|
|
||||||
rclone sync "$ITUNES_DIR" amazon:/Music/iTunes "$DEFAULTS_AMAZON"
|
|
||||||
|
|
||||||
# Sync down all S3 buckets
|
|
||||||
#rclone sync s3: $S3BACKUP_DIR
|
|
@ -8,7 +8,7 @@
|
|||||||
########################################################################
|
########################################################################
|
||||||
|
|
||||||
# list of files/folders to symlink in homedir
|
# list of files/folders to symlink in homedir
|
||||||
FILES="bash_aliases bashrc bash_profile bash_paths bash_prompt bash_exports editorconfig gemrc gitconfig gitignore hushlogin inputrc private npmrc bin tmux.conf vimrc"
|
FILES="bash_aliases bashrc bash_profile bash_paths bash_prompt bash_exports editorconfig gitconfig gitignore hushlogin inputrc private bin tmux.conf vimrc"
|
||||||
|
|
||||||
for FILE in $FILES; do
|
for FILE in $FILES; do
|
||||||
|
|
||||||
|
@ -5,12 +5,11 @@
|
|||||||
# macOS
|
# macOS
|
||||||
# -------------
|
# -------------
|
||||||
|
|
||||||
echo ""
|
# echo ""
|
||||||
echo "$(tput setaf 3) Update macOS Apps"
|
# echo "$(tput setaf 3) Update macOS Apps"
|
||||||
echo "------------------------------$(tput sgr0)"
|
# echo "------------------------------$(tput sgr0)"
|
||||||
|
|
||||||
# sudo softwareupdate -i -a
|
# sudo softwareupdate -i -a
|
||||||
|
|
||||||
# mas upgrade
|
# mas upgrade
|
||||||
|
|
||||||
#
|
#
|
||||||
@ -28,7 +27,7 @@ brew cleanup
|
|||||||
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# npm
|
# Node.js & npm
|
||||||
# -------------
|
# -------------
|
||||||
|
|
||||||
echo ""
|
echo ""
|
||||||
@ -36,6 +35,9 @@ echo ""
|
|||||||
echo "$(tput setaf 3) Update npm"
|
echo "$(tput setaf 3) Update npm"
|
||||||
echo "------------------------------$(tput sgr0)"
|
echo "------------------------------$(tput sgr0)"
|
||||||
|
|
||||||
|
# Update to latest nvm Node.js
|
||||||
|
nvm install node
|
||||||
|
|
||||||
# update npm itself
|
# update npm itself
|
||||||
npm install npm -g
|
npm install npm -g
|
||||||
|
|
||||||
|
@ -25,16 +25,19 @@
|
|||||||
excludesfile = ~/.gitignore
|
excludesfile = ~/.gitignore
|
||||||
quotepath = false
|
quotepath = false
|
||||||
|
|
||||||
# Handle umlauts and such better on OS X
|
# Handle umlauts and such better on macOS
|
||||||
# for whatever crazy reason this explicitly
|
# for whatever crazy reason this explicitly
|
||||||
# has to be set to false so tracked files with
|
# has to be set to false so tracked files with
|
||||||
# special characters don't get treated as untracked
|
# special characters don't get treated as untracked
|
||||||
precomposeunicode = false
|
precomposeunicode = false
|
||||||
|
|
||||||
# Make `git rebase` safer on OS X
|
# Make `git rebase` safer on macOS
|
||||||
# More info: http://www.git-tower.com/blog/make-git-rebase-safe-on-osx/
|
# More info: http://www.git-tower.com/blog/make-git-rebase-safe-on-osx/
|
||||||
trustctime = false
|
trustctime = false
|
||||||
|
|
||||||
|
# Be case sensitive on case insensitive systems
|
||||||
|
ignorecase = false
|
||||||
|
|
||||||
[alias]
|
[alias]
|
||||||
c = clone --recursive
|
c = clone --recursive
|
||||||
co = checkout
|
co = checkout
|
||||||
|
Loading…
Reference in New Issue
Block a user