Merge remote-tracking branch 'origin/github/pr/138'
authorMichael Prokop <mika@grml.org>
Fri, 25 Mar 2022 15:02:13 +0000 (16:02 +0100)
committerMichael Prokop <mika@grml.org>
Fri, 25 Mar 2022 15:02:13 +0000 (16:02 +0100)
debian/changelog
etc/tmux.conf

index 42b1067..3d075c7 100644 (file)
@@ -1,3 +1,10 @@
+grml-etc-core (0.19.2) grml-testing; urgency=medium
+
+  [ Frank Terbeck ]
+  * [4a3593b] doc: Error out properly when a generator fails
+
+ -- Michael Prokop <mika@grml.org>  Mon, 21 Mar 2022 16:22:05 +0100
+
 grml-etc-core (0.19.1) grml-testing; urgency=medium
 
   [ Bhoppi Chaw ]
index 71be90b..ea20b33 100644 (file)
@@ -30,7 +30,7 @@ bind-key J join-pane
 bind-key B if-shell "! tmux has-session -t bg" "new-session -d -s bg" \; move-window -t bg
 
 ### Reload Config
-bind-key R source-file ~/.tmux.conf \; display-message "~/.tmux.conf reloaded"
+bind-key R source-file ~/.tmux.conf \; source-file -q ~/.tmux.conf.local \; display-message "~/.tmux.conf[.local] reloaded"
 
 ###rebind keys
 bind-key h next-layout
@@ -66,3 +66,6 @@ set -g status-right '#[fg=yellow]%Y-%m-%d %H:%M'
 
 set-window-option -g window-status-style fg=blue,bg=black
 set-window-option -g window-status-current-style bold
+
+### source user-specific local configuration file
+source-file -q ~/.tmux.conf.local