diff --git a/config/fonts.nix b/config/fonts.nix index 69fa534..b3e0c37 100644 --- a/config/fonts.nix +++ b/config/fonts.nix @@ -5,11 +5,14 @@ home.packages = with pkgs; [ # DejaVu font family dejavu_fonts - + # Nerd Fonts with programming ligatures and icon support nerd-fonts.fira-code nerd-fonts.jetbrains-mono - + + # Ubuntu font family + ubuntu_font_family + # CJK fonts for proper Chinese/Japanese/Korean character display noto-fonts-cjk-sans # Comprehensive CJK support noto-fonts-cjk-serif # Serif CJK text support diff --git a/config/projects.nix b/config/projects.nix index e94d040..22faac9 100644 --- a/config/projects.nix +++ b/config/projects.nix @@ -117,5 +117,18 @@ in ]; }; + dl4traj = { + description = "DAKI3 2025 Semester"; + windows = [ + { + name = ""; + path = homePath "Documents/Projects/Deep Learning for Spatiotemporal Trajectories"; + ai = true; + git = true; + shell = true; + } + ]; + }; + }; } diff --git a/modules/tmux.nix b/modules/tmux.nix index ecbeee7..57e4363 100644 --- a/modules/tmux.nix +++ b/modules/tmux.nix @@ -40,9 +40,9 @@ # Status bar content set -g status-left-length 40 - set -g status-right-length 30 + set -g status-right-length 50 set -g status-left '#{?client_prefix,#[bg=#fb4934],#[bg=#a89984]}#[fg=#282828] #S #[bg=#282828] ' - set -g status-right '#{?SSH_CLIENT,#[bg=#fabd2f],#[bg=#a89984]}#[fg=#282828]#{?pane_in_mode, [COPY],} #H | %H:%M ' + set -g status-right '#[bg=#282828]#[fg=#ebdbb2] #{b:pane_current_path} #{?SSH_CLIENT,#[bg=#fabd2f],#[bg=#a89984]}#[fg=#282828]#{?pane_in_mode, [COPY],} #H | %H:%M ' # Window status format set -g window-status-format ' #I:#W '