From 128bccd0fc2cbc9acbdb7bc15d376708dbd89ef1 Mon Sep 17 00:00:00 2001 From: Aly Raffauf Date: Fri, 22 Mar 2024 21:11:57 -0400 Subject: [PATCH] home-manager: updated emacs config. --- home/shell.nix | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/home/shell.nix b/home/shell.nix index 21f81ec8..04ac141f 100644 --- a/home/shell.nix +++ b/home/shell.nix @@ -19,6 +19,13 @@ org-roam nix-mode treemacs + projectile + yaml + yaml-mode + markdown-mode + ox-pandoc + use-package + python ]) ); package = pkgs.emacs-nox; @@ -46,7 +53,7 @@ ; Enable treemacs (add-hook 'emacs-startup-hook 'treemacs) - (setq treemacs-width 25) + (setq treemacs-width 20) (treemacs-resize-icons 16) ; Adjust the icon size according to your preference (setq treemacs-follow-mode t) ; Enable follow mode (setq treemacs-filewatch-mode t) ; Enable file watch mode @@ -95,6 +102,7 @@ tmuxPlugins.better-mouse-mode tmuxPlugins.cpu tmuxPlugins.battery + tmuxPlugins.resurrect ]; terminal = "tmux-256color"; extraConfig = '' @@ -106,6 +114,7 @@ run-shell ${pkgs.tmuxPlugins.weather}/share/tmux-plugins/weather/tmux-weather.tmux run-shell ${pkgs.tmuxPlugins.cpu}/share/tmux-plugins/cpu/cpu.tmux run-shell ${pkgs.tmuxPlugins.battery}/share/tmux-plugins/battery/battery.tmux + run-shell ${pkgs.tmuxPlugins.battery}/share/tmux-plugins/resurrect/resurrect.tmux ''; }; }