summaryrefslogtreecommitdiff
path: root/.emacs.d
diff options
context:
space:
mode:
Diffstat (limited to '.emacs.d')
-rw-r--r--.emacs.d/init.el16
1 files changed, 15 insertions, 1 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el
index a986e24..ef73cdc 100644
--- a/.emacs.d/init.el
+++ b/.emacs.d/init.el
@@ -201,13 +201,16 @@ Contains the list of packages that need to be installed.")
:height 1.15
:v-adjust -0.05
:face 'font-lock-keyword-face))
+
+(set-face-attribute 'dashboard-items-face nil :inherit 'unspecified)
+
(dashboard-refresh-buffer)
(defvar eshell-path-env (getenv "~/.local/bin"))
-(load-theme 'doom-old-hope t)
+(load-theme 'doom-ayu-dark t)
(doom-modeline-mode 1)
(setq doom-modeline-height 35)
@@ -494,6 +497,17 @@ Contains the list of packages that need to be installed.")
:ensure t
:mode ".pdf")
+;; Check if it's my macbook, if t
+;; load tdlib from homebrew
+(when (equal system-type 'darwin)
+ (use-package telega
+ :load-path "~/telega.el"
+ :commands (telega)
+ :defer t
+ :config
+ (setq telega-server-libs-prefix "/opt/homebrew/Cellar/tdlib/HEAD-3d0140b")))
+
+
;;mastodon
(setq mastodon-instance-url "https://emacs.ch"
mastodon-active-user "apo11o")