diff --git a/init.el b/init.el index 8584ba6..ef9fba9 100644 --- a/init.el +++ b/init.el @@ -134,7 +134,7 @@ ) ;;==================== -;; Graphical Mode Config +;; Graphical/Term Mode Config ;;==================== ;; Style the mode line and turn off the toolbar when in graphical mode. @@ -147,6 +147,12 @@ (tool-bar-mode 0) )) +;; Load the "manoj-dark" default theme when in term mode. +(if (not (display-graphic-p) ) + (progn + (load-theme 'manoj-dark) + )) + ;;==================== ;; Package Manager ;;====================