16 lines
602 B
Plaintext
16 lines
602 B
Plaintext
# ~/.tmux.conf — created/managed by Chef (kosmos-base::tmux).
|
|
#
|
|
# This file imports the system default config below, then appends any overrides
|
|
# the user has submitted to files/default/tmux_users/<username>.conf in the
|
|
# kosmos-base cookbook. If you manage your own tmux config locally and have not
|
|
# submitted a file, Chef will not overwrite it.
|
|
|
|
source-file <%= @default_conf %>
|
|
|
|
<% if @user_content && !@user_content.empty? -%>
|
|
# === user overrides (from files/default/tmux_users/<username>.conf) ===
|
|
<%= @user_content %>
|
|
<% else -%>
|
|
# === Add your custom settings below this line ===
|
|
<% end -%>
|