Commit Diff


commit - 01ca374060528c6eb8e89517a105351cda4710cc
commit + bd8517fd6389694841279b4742cebfa42e2cd5eb
blob - 66696b62d0713ad3abb6720f7c506056e510fa9a
blob + ddcbf87c8261b36585a8801ee0ca9dd2d4170aab
--- .config/fontconfig/fonts.conf
+++ .config/fontconfig/fonts.conf
@@ -6,7 +6,7 @@
       <string>monospace</string>
     </test>
     <edit name="family" mode="prepend" binding="strong">
-      <string>Go Mono</string>
+      <string>Iosevka</string>
     </edit>
     <edit name="style" mode="prepend" binding="strong">
       <string>Regular</string>
blob - de3ece4d71262d850f59c6f5656e506a6597a452
blob + 5544c9b353ab48d5116bcc856c11994b2e35309a
--- .config/tmux/tmux.conf
+++ .config/tmux/tmux.conf
@@ -1,28 +1,30 @@
-# Vim motions and C-a as prefix
-set-window-option -g mode-keys vi
+# Prefix
 unbind C-b
 set -g prefix C-a
 bind C-a send-prefix
+
+# Vim motions
+set-window-option -g mode-keys vi
+
 bind-key h select-pane -L
 bind-key j select-pane -D
 bind-key k select-pane -U
 bind-key l select-pane -R
 
-# Don't mess with colors
+bind v split-window -h
+bind s split-window -v
+
+bind -T copy-mode-vi y send-keys -X copy-pipe-and-cancel "xclip -selection clipboard -i"
+
+# Theme
 set -g default-terminal "${TERM}"
 set-option -g terminal-overrides ",256col:RGB:XT"
-
-# Start from 1
-set -g base-index 1
-setw -g pane-base-index 1
-
-#
 set -g pane-active-border-style fg=white
 set -g message-style "fg=white,bg=black,noreverse"
-
-# Copy to system clipboard
-bind -T copy-mode-vi y send-keys -X copy-pipe-and-cancel "xclip -selection clipboard -i"
-
-# Bar
 set-option -g status-style bg=default
 set -g status-right ""
+
+# Start from 1
+set -g base-index 1
+setw -g pane-base-index 1
+