maint: back to macports
This commit is contained in:
parent
1b74b7beec
commit
85d491cf64
4 changed files with 20 additions and 10 deletions
18
README.md
18
README.md
|
@ -1,14 +1,19 @@
|
||||||
# dotfiles
|
# dotfiles
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ git clone --origin thermokart ssh://git@pingo.thermokar.st:dotfiles ~/.dotfiles
|
$ git clone --origin pingo ssh://git@pingo.thermokar.st/dotfiles ~/.dotfiles
|
||||||
$ git clone https://github.com/chriskempson/base16-shell.git ~/.config/base16-shell
|
$ git clone https://github.com/chriskempson/base16-shell.git ~/.config/base16-shell
|
||||||
$ git clone --recursive https://github.com/sorin-ionescu/prezto.git "${ZDOTDIR:-$HOME}/.zprezto"
|
$ git clone --recursive https://github.com/sorin-ionescu/prezto.git "${ZDOTDIR:-$HOME}/.zprezto"
|
||||||
$ cd ~/.dotfiles
|
$ cd ~/.dotfiles
|
||||||
$ ./install
|
$ ./install
|
||||||
$ source ~/.zshrc
|
$ source ~/.zshrc
|
||||||
$ sudo port install \
|
# At the time of this commit, cmus depends on mp4v2 - the latest version
|
||||||
|
# (ae4bd4f26c27327c8d188e127022d9231f8c7d4b) doesn't appear to be linking
|
||||||
|
# correctly, so I had to manually install an older version.
|
||||||
|
$ sudo -s
|
||||||
|
$ yes | port install \
|
||||||
ImageMagick \
|
ImageMagick \
|
||||||
|
cargo \
|
||||||
cmus \
|
cmus \
|
||||||
curl \
|
curl \
|
||||||
git \
|
git \
|
||||||
|
@ -16,7 +21,6 @@ $ sudo port install \
|
||||||
htop \
|
htop \
|
||||||
nodejs16 \
|
nodejs16 \
|
||||||
pass \
|
pass \
|
||||||
pinetry-mac \
|
|
||||||
syncthing-macos \
|
syncthing-macos \
|
||||||
the_silver_searcher \
|
the_silver_searcher \
|
||||||
tmux \
|
tmux \
|
||||||
|
@ -28,18 +32,20 @@ $ sudo port install \
|
||||||
$ base16_ashes
|
$ base16_ashes
|
||||||
$ curl -fLo ~/.vim/autoload/plug.vim --create-dirs \
|
$ curl -fLo ~/.vim/autoload/plug.vim --create-dirs \
|
||||||
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
|
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
|
||||||
|
$ vim +PlugInstall
|
||||||
$ wget https://repo.anaconda.com/miniconda/Miniconda3-latest-MacOSX-x86_64.sh
|
$ wget https://repo.anaconda.com/miniconda/Miniconda3-latest-MacOSX-x86_64.sh
|
||||||
$ sudo sh Miniconda3-latest-MacOSX-x86_64.sh -p /opt/miniconda3 -b
|
$ sudo sh Miniconda3-latest-MacOSX-x86_64.sh -p /opt/miniconda3 -b
|
||||||
$ sudo conda update conda
|
$ sudo conda update conda
|
||||||
$ wget https://raw.githubusercontent.com/qiime2/environment-files/master/latest/staging/qiime2-latest-py38-osx-conda.yml
|
$ wget https://raw.githubusercontent.com/qiime2/environment-files/master/latest/staging/qiime2-latest-py38-osx-conda.yml
|
||||||
$ conda env create -n q2dev --file qiime2-latest-py38-osx-conda.yml
|
$ conda env create -n q2dev --file qiime2-latest-py38-osx-conda.yml
|
||||||
$ conda env create -n dotfiles -c conda-forge pygit2
|
$ conda create -n dotfiles -c conda-forge pygit2
|
||||||
$ conda run -n dotfiles python ~/.dotfiles/bin/sync_git_repos.py ~/.dotfiles/repos.ini
|
$ conda run -n dotfiles python ~/.dotfiles/bin/sync_git_repos.py ~/.dotfiles/repos.ini
|
||||||
```
|
```
|
||||||
|
|
||||||
## manual apps
|
## manual apps
|
||||||
|
|
||||||
- chrome
|
- chrome
|
||||||
|
- cisco anyconnect
|
||||||
- docker desktop
|
- docker desktop
|
||||||
- firefox
|
- firefox
|
||||||
- garageband
|
- garageband
|
||||||
|
@ -48,10 +54,14 @@ $ conda run -n dotfiles python ~/.dotfiles/bin/sync_git_repos.py ~/.dotfiles/rep
|
||||||
- melodics
|
- melodics
|
||||||
- passff-host
|
- passff-host
|
||||||
- postgres.app
|
- postgres.app
|
||||||
|
- renoise
|
||||||
|
- signal
|
||||||
|
- slack
|
||||||
- steermouse
|
- steermouse
|
||||||
- thunderbird
|
- thunderbird
|
||||||
- virtualbox
|
- virtualbox
|
||||||
- vscode
|
- vscode
|
||||||
|
- xcode
|
||||||
- zoom
|
- zoom
|
||||||
|
|
||||||
## optional vscode extensions
|
## optional vscode extensions
|
||||||
|
|
|
@ -26,6 +26,5 @@
|
||||||
"python.defaultInterpreterPath": "~/.conda/envs/q2dev/bin/python",
|
"python.defaultInterpreterPath": "~/.conda/envs/q2dev/bin/python",
|
||||||
"python.terminal.activateEnvInCurrentTerminal": true,
|
"python.terminal.activateEnvInCurrentTerminal": true,
|
||||||
"python.languageServer": "Microsoft",
|
"python.languageServer": "Microsoft",
|
||||||
"git.enabled": false,
|
|
||||||
"liveshare.authenticationProvider": "GitHub"
|
"liveshare.authenticationProvider": "GitHub"
|
||||||
}
|
}
|
||||||
|
|
|
@ -74,11 +74,15 @@ typeset -gU cdpath fpath mailpath path
|
||||||
|
|
||||||
# Set the list of directories that Zsh searches for programs.
|
# Set the list of directories that Zsh searches for programs.
|
||||||
path=(
|
path=(
|
||||||
$path
|
|
||||||
|
|
||||||
# miniconda
|
# miniconda
|
||||||
/opt/miniconda3/bin
|
/opt/miniconda3/bin
|
||||||
|
|
||||||
|
# macports
|
||||||
|
/opt/local/bin
|
||||||
|
/opt/local/sbin
|
||||||
|
|
||||||
|
$path
|
||||||
|
|
||||||
# npm
|
# npm
|
||||||
$HOME/.npm-packages/bin
|
$HOME/.npm-packages/bin
|
||||||
|
|
||||||
|
|
|
@ -21,9 +21,6 @@ alias greg="grep"
|
||||||
|
|
||||||
BASE16_SHELL=$HOME/.config/base16-shell/
|
BASE16_SHELL=$HOME/.config/base16-shell/
|
||||||
[ -n "$PS1" ] && [ -s $BASE16_SHELL/profile_helper.sh ] && eval "$($BASE16_SHELL/profile_helper.sh)"
|
[ -n "$PS1" ] && [ -s $BASE16_SHELL/profile_helper.sh ] && eval "$($BASE16_SHELL/profile_helper.sh)"
|
||||||
if [ -e $HOME/.nix-profile/etc/profile.d/nix.sh ]; then
|
|
||||||
source $HOME/.nix-profile/etc/profile.d/nix.sh;
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Backup shortcuts (borrowed parts from https://github.com/laurent22/rsync-time-backup
|
# Backup shortcuts (borrowed parts from https://github.com/laurent22/rsync-time-backup
|
||||||
function prune_backups() {
|
function prune_backups() {
|
||||||
|
|
Loading…
Add table
Reference in a new issue