From f2c787c2fef84c79fe34fc1df5c087ce37903326 Mon Sep 17 00:00:00 2001 From: Aly Raffauf Date: Fri, 22 Mar 2024 22:07:14 -0400 Subject: [PATCH] home-manager: updated emacs config --- home/shell.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/home/shell.nix b/home/shell.nix index 04ac141f..763bd52f 100644 --- a/home/shell.nix +++ b/home/shell.nix @@ -19,6 +19,8 @@ org-roam nix-mode treemacs + treemacs-tab-bar + treemacs-projectile projectile yaml yaml-mode @@ -28,7 +30,7 @@ python ]) ); - package = pkgs.emacs-nox; + # package = pkgs.emacs-nox; extraConfig = '' ; 4 spaces > tabs. (setq-default indent-tabs-mode nil) @@ -53,6 +55,7 @@ ; Enable treemacs (add-hook 'emacs-startup-hook 'treemacs) + (treemacs-load-theme "Default") (setq treemacs-width 20) (treemacs-resize-icons 16) ; Adjust the icon size according to your preference (setq treemacs-follow-mode t) ; Enable follow mode @@ -62,6 +65,7 @@ (setq treemacs-git-integration t) ; Enable git integration (setq treemacs-show-hidden-files t) ; Show hidden files (setq treemacs-icons-dired-mode t) ; Use icons in dired buffers + (setq treemacs-set-scope-type 'Tabs) ; Enable column 80 line for coding (setq-default fill-column 80)