Literally commit everything I have on WSL that still untoched for months

For backup reasons :)

Signed-off-by: Andrei Jiroh Eugenio Halili <ajhalili2006@gmail.com>
This commit is contained in:
Andrei Jiroh Halili 2022-02-06 18:50:22 +08:00
parent 5b92f7ad83
commit 2f49205891
Signed by: ajhalili2006
GPG Key ID: A30EBE40AD856D88
3 changed files with 10 additions and 11 deletions

7
bin/setup-yarn-berry Normal file
View File

@ -0,0 +1,7 @@
#!/usr/bin/env bash
# Step 1: Ensure we're on berry on per-project basis.
yarn set version berry
# Step 2: Copy our gitignore file for Berry

3
tests/alpine/Dockerfile Normal file
View File

@ -0,0 +1,3 @@
FROM alpine:edge
RUN apk add

View File

@ -1,16 +1,10 @@
# Use Zsh as my default shell
set-option -g default-shell /bin/zsh
# eunsure we use emacs-style keybinds
set -gw mode-keys emacs
# my prefix btw
unbind C-b
set -g prefix M-w
# session selector
bind C-W choose-session
# make sure we can magically source config changes via <prefix>+R shortcut.
bind r source-file ~/.tmux.conf
@ -33,8 +27,3 @@ bind -n M-Down select-pane -D
# activity monitoring
setw -g monitor-activity on
set -g visual-activity on
# clipboard stuff to use xclip instead
set-option -g mouse on
set-option -s set-clipboard off
bind-key -T copy-mode MouseDragEnd1Pane send-keys -X copy-pipe-and-cancel "xclip -se c -i"