MAINT: opensuse pt2
This commit is contained in:
parent
c62a0eb97d
commit
8e336bc698
4 changed files with 22 additions and 1 deletions
|
@ -10,6 +10,10 @@ $ sudo zypper install \
|
||||||
htop \
|
htop \
|
||||||
mr \
|
mr \
|
||||||
nodejs10 \
|
nodejs10 \
|
||||||
|
postgresql \
|
||||||
|
postgresql-server \
|
||||||
|
postgresql-devel \
|
||||||
|
tlp \
|
||||||
tmux \
|
tmux \
|
||||||
tree \
|
tree \
|
||||||
vim \
|
vim \
|
||||||
|
@ -26,4 +30,9 @@ $ ./install
|
||||||
$ curl -fLo ~/.vim/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
|
$ curl -fLo ~/.vim/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
|
||||||
$ vim +PlugInstall
|
$ vim +PlugInstall
|
||||||
$ mr checkout
|
$ mr checkout
|
||||||
|
$ wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
|
||||||
|
$ sudo sh Miniconda3-latest-Linux-x86_64.sh # install to /opt/miniconda3
|
||||||
|
$ sudo conda update conda
|
||||||
|
$ wget https://raw.githubusercontent.com/qiime2/environment-files/master/latest/staging/qiime2-latest-py36-linux-conda.yml
|
||||||
|
$ conda env create -n q2dev --file qiime2-latest-py36-linux-conda.yml
|
||||||
```
|
```
|
||||||
|
|
|
@ -25,6 +25,13 @@ bind '"' split-window -c "#{pane_current_path}"
|
||||||
|
|
||||||
set-window-option -g mode-keys vi
|
set-window-option -g mode-keys vi
|
||||||
|
|
||||||
|
# hjkl pane traversal
|
||||||
|
set-window-option -g mode-keys vi
|
||||||
|
bind h select-pane -L
|
||||||
|
bind j select-pane -D
|
||||||
|
bind k select-pane -U
|
||||||
|
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-justify centre
|
set -g status-justify centre
|
||||||
|
|
|
@ -76,8 +76,11 @@ cdpath=(
|
||||||
path=(
|
path=(
|
||||||
# miniconda
|
# miniconda
|
||||||
/opt/miniconda3/bin
|
/opt/miniconda3/bin
|
||||||
|
# yarn
|
||||||
|
$HOME/.yarn/bin
|
||||||
|
$HOME/.config/yarn/global/node_modules/.bin
|
||||||
|
|
||||||
$path
|
$path
|
||||||
)
|
)
|
||||||
|
|
||||||
export -U PATH
|
export -U PATH
|
||||||
export PATH_SAVE=$PATH
|
|
||||||
|
|
|
@ -20,6 +20,7 @@ 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)"
|
||||||
|
[ -f $HOME/.fzf.zsh ] && source $HOME/.fzf.zsh
|
||||||
|
|
||||||
# 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() {
|
||||||
|
@ -65,3 +66,4 @@ function back_things_up() {
|
||||||
ln -s $dest_root/$date $dest_root/latest
|
ln -s $dest_root/$date $dest_root/latest
|
||||||
# TODO: once confident pruning is working well, add that in here
|
# TODO: once confident pruning is working well, add that in here
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue