ENH: opensuse

This commit is contained in:
Matthew Ryan Dillon 2019-02-22 14:35:44 -07:00
parent 2332284d8e
commit 66e3a611e0
6 changed files with 14 additions and 73 deletions

View file

@ -1,41 +1,23 @@
# Dotfiles # Dotfiles
```bash ```bash
$ git clone https://github.com/thermokarst/dotfiles.git ~/.dotfiles $ sudo zypper install \
$ cd ~/.dotfiles
$ git remote rename origin thermokarst
# Install macports
$ sudo port selfupdate
$ sudo port install \
the_silver_searcher \ the_silver_searcher \
aspell \
aspell-dict-en \
cmus \ cmus \
curl \
git \ git \
gnupg2 \
graphviz-devel \
htop \ htop \
imagemagick \ mr \
myrepos \ nodejs10 \
nodejs9 \
openssl \
postgresql10 \
postgresql10-server \
python36 \
tmux-pasteboard \
rsync \
tmux \ tmux \
tree \ tree \
vim \ vim \
wget \ wget \
xz \ xz \
zsh zsh
$ sudo port select --set python python36 $ git clone https://github.com/thermokarst/dotfiles.git ~/.dotfiles
$ sudo port select --set python3 python36 $ cd ~/.dotfiles
$ sudo port select --set postgresql postgresql10 $ git remote rename origin thermokarst
$ sudo chpass -s '/opt/local/bin/zsh' $USER $ sudo chsh $USER -s zsh
$ sudo sh -c 'echo /opt/local/bin/zsh >>/etc/shells'
$ 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"
$ ./install $ ./install
@ -43,28 +25,3 @@ $ curl -fLo ~/.vim/autoload/plug.vim --create-dirs https://raw.githubusercontent
$ vim +PlugInstall $ vim +PlugInstall
$ mr checkout $ mr checkout
``` ```
## Typical `pip` modifications for macports
```bash
pip install --global-option=build_ext --global-option=-I/opt/local/include -r requirements.txt
```
## postgresql setup
```bash
sudo mkdir -p /opt/local/var/db/postgresql10/defaultdb
sudo chown postgres:postgres /opt/local/var/db/postgresql10/defaultdb
sudo su postgres -c '/opt/local/lib/postgresql10/bin/initdb -D /opt/local/var/db/postgresql10/defaultdb'
sudo port load postgresql10-server
sudo su postgres -c "createuser matthew --createdb --login --superuser"
sudo su postgres -c "createdb matthew"
```
### Trackpad
https://github.com/pilotmoon/Scroll-Reverser
### Typeface
https://fonts.google.com/specimen/Inconsolata (iTerm2 16pt anti-aliased)

View file

@ -50,7 +50,5 @@
la = "!git config -l | grep alias | cut -c 7-" la = "!git config -l | grep alias | cut -c 7-"
[push] [push]
default = upstream default = upstream
[credential]
helper = osxkeychain
[pull] [pull]
rebase = true rebase = true

View file

@ -1,8 +1,7 @@
# Automatic window title # Automatic window title
setw -g automatic-rename setw -g automatic-rename
# Fix LSOpenURLsWithRole() error on OS X. Requires reattach-to-user-namespace set-option -g default-shell /bin/zsh
set -g default-command "reattach-to-user-namespace -l /opt/local/bin/zsh"
# remap prefix to Control + a # remap prefix to Control + a
set -g prefix C-a set -g prefix C-a
@ -32,7 +31,6 @@ bind l select-pane -R
set-option -g status-bg colour18 set-option -g status-bg colour18
set-option -g status-fg colour136 set-option -g status-fg colour136
set -g status-interval 0 # Changed for El Capitan issues
set -g status-justify centre set -g status-justify centre
set -g status-left-length 50 set -g status-left-length 50
set -g status-right-length 140 set -g status-right-length 140
@ -46,5 +44,6 @@ set-option -g destroy-unattached 'off'
# Enable mouse control (clickable windows, panes, resizable panes) # Enable mouse control (clickable windows, panes, resizable panes)
set -g mouse on set -g mouse on
# TODO: look into this
bind-key -Tcopy-mode-vi 'v' send -X begin-selection bind-key -Tcopy-mode-vi 'v' send -X begin-selection
bind-key -Tcopy-mode-vi 'y' send -X copy-pipe-and-cancel pbcopy bind-key -Tcopy-mode-vi 'y' send -X copy-pipe-and-cancel pbcopy

View file

@ -1,7 +1,2 @@
# Matthew Dillon # Matthew Dillon
# matthewrdillon@gmail.com # matthewrdillon@gmail.com
# Doing this to get around `path_helper`, which reorders my path when I
# least expect it!
# https://github.com/sorin-ionescu/prezto/issues/381
export PATH=$PATH_SAVE:$PATH

View file

@ -76,16 +76,7 @@ cdpath=(
path=( path=(
# miniconda # miniconda
/opt/miniconda3/bin /opt/miniconda3/bin
$path
# macports
/opt/local/bin
/opt/local/sbin
# xquartz
/opt/X11/bin
# latex
/Library/Tex/texbin
) )
export -U PATH export -U PATH

View file

@ -6,7 +6,9 @@ if [[ -s "${ZDOTDIR:-$HOME}/.zprezto/init.zsh" ]]; then
source "${ZDOTDIR:-$HOME}/.zprezto/init.zsh" source "${ZDOTDIR:-$HOME}/.zprezto/init.zsh"
fi fi
source /opt/miniconda3/etc/profile.d/conda.sh if [[ -s "/opt/miniconda3/etc/profile.d/conda.sh" ]]; then
source /opt/miniconda3/etc/profile.d/conda.sh
fi
# shortcuts # shortcuts
alias mailserver="sudo python -m smtpd -n -c DebuggingServer localhost:25" alias mailserver="sudo python -m smtpd -n -c DebuggingServer localhost:25"
@ -19,8 +21,6 @@ alias i="ipython3"
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)"
alias tmux="TERM=xterm-256color tmux"
# 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() {
dest_root="/Volumes/field_on_fire/$HOST" dest_root="/Volumes/field_on_fire/$HOST"
@ -50,6 +50,7 @@ function prune_backups() {
function back_things_up() { function back_things_up() {
date=$(date +"%Y-%m-%d-%H%M%S") date=$(date +"%Y-%m-%d-%H%M%S")
# TODO: update this...
dest_root="/Volumes/field_on_fire/$HOST" dest_root="/Volumes/field_on_fire/$HOST"
rsync -azPE \ rsync -azPE \
--stats \ --stats \