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
```bash
$ git clone https://github.com/thermokarst/dotfiles.git ~/.dotfiles
$ cd ~/.dotfiles
$ git remote rename origin thermokarst
# Install macports
$ sudo port selfupdate
$ sudo port install \
$ sudo zypper install \
the_silver_searcher \
aspell \
aspell-dict-en \
cmus \
curl \
git \
gnupg2 \
graphviz-devel \
htop \
imagemagick \
myrepos \
nodejs9 \
openssl \
postgresql10 \
postgresql10-server \
python36 \
tmux-pasteboard \
rsync \
mr \
nodejs10 \
tmux \
tree \
vim \
wget \
xz \
zsh
$ sudo port select --set python python36
$ sudo port select --set python3 python36
$ sudo port select --set postgresql postgresql10
$ sudo chpass -s '/opt/local/bin/zsh' $USER
$ sudo sh -c 'echo /opt/local/bin/zsh >>/etc/shells'
$ git clone https://github.com/thermokarst/dotfiles.git ~/.dotfiles
$ cd ~/.dotfiles
$ git remote rename origin thermokarst
$ sudo chsh $USER -s zsh
$ 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"
$ ./install
@ -43,28 +25,3 @@ $ curl -fLo ~/.vim/autoload/plug.vim --create-dirs https://raw.githubusercontent
$ vim +PlugInstall
$ 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-"
[push]
default = upstream
[credential]
helper = osxkeychain
[pull]
rebase = true

View file

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

View file

@ -1,7 +1,2 @@
# Matthew Dillon
# 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=(
# miniconda
/opt/miniconda3/bin
# macports
/opt/local/bin
/opt/local/sbin
# xquartz
/opt/X11/bin
# latex
/Library/Tex/texbin
$path
)
export -U PATH

View file

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