mirror of
https://github.com/davegallant/nix-config
synced 2025-08-07 09:12:28 +00:00
Enable tmux pane titles by default
This commit is contained in:
@@ -101,6 +101,7 @@ in
|
|||||||
localVariables = {
|
localVariables = {
|
||||||
CASE_SENSITIVE = "true";
|
CASE_SENSITIVE = "true";
|
||||||
DISABLE_UNTRACKED_FILES_DIRTY = "true";
|
DISABLE_UNTRACKED_FILES_DIRTY = "true";
|
||||||
|
RPROMPT = "";
|
||||||
ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE = "fg=#838383,underline";
|
ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE = "fg=#838383,underline";
|
||||||
ZSH_DISABLE_COMPFIX = "true";
|
ZSH_DISABLE_COMPFIX = "true";
|
||||||
};
|
};
|
||||||
@@ -137,7 +138,7 @@ in
|
|||||||
|
|
||||||
"oh-my-zsh" = {
|
"oh-my-zsh" = {
|
||||||
enable = true;
|
enable = true;
|
||||||
plugins = [ "last-working-dir" ];
|
plugins = [ "last-working-dir" "tmux" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
@@ -264,6 +265,8 @@ in
|
|||||||
|
|
||||||
set -g xterm-keys on
|
set -g xterm-keys on
|
||||||
|
|
||||||
|
set -g pane-border-status top
|
||||||
|
|
||||||
set -g set-titles on
|
set -g set-titles on
|
||||||
set -g display-panes-time 800
|
set -g display-panes-time 800
|
||||||
set -g display-time 2000
|
set -g display-time 2000
|
||||||
@@ -274,6 +277,7 @@ in
|
|||||||
set -g visual-activity off
|
set -g visual-activity off
|
||||||
|
|
||||||
set -g status-right '#(gitmux #{pane_current_path})'
|
set -g status-right '#(gitmux #{pane_current_path})'
|
||||||
|
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@@ -12,10 +12,9 @@ in
|
|||||||
|
|
||||||
homebrew = {
|
homebrew = {
|
||||||
enable = true;
|
enable = true;
|
||||||
autoUpdate = true;
|
autoUpdate = false;
|
||||||
global = {
|
global = {
|
||||||
brewfile = true;
|
brewfile = true;
|
||||||
noLock = true;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
brews = [
|
brews = [
|
||||||
|
Reference in New Issue
Block a user