From 3888110e5b505e09a744474851586f6d2ed47c68 Mon Sep 17 00:00:00 2001 From: Sako <78461130+Sakooooo@users.noreply.github.com> Date: Fri, 22 Dec 2023 23:34:01 +0400 Subject: [PATCH] Update emacs.org --- config/emacs/emacs.org | 44 ++++++++++++++++++++++++++++-------------- 1 file changed, 29 insertions(+), 15 deletions(-) diff --git a/config/emacs/emacs.org b/config/emacs/emacs.org index 012d1259..8a6107e8 100644 --- a/config/emacs/emacs.org +++ b/config/emacs/emacs.org @@ -1,6 +1,5 @@ #+title: Sakomacs configuration #+PROPERTY: header-args:emacs-lisp :tangle ./init.el - * Usage M-x org-bable-tangle * Lexical Binding @@ -370,22 +369,27 @@ Should make startup faster, taken from doom-emacs #+end_src ** Custom Themes #+begin_src emacs-lisp - (use-package doom-themes - :straight t - :ensure t - :config - ;; Global settings (defaults) - (setq doom-themes-enable-bold t ; if nil, bold is universally disabled - doom-themes-enable-italic t) ; if nil, italics is universally disabled - ;; load the theme - (load-theme 'doom-monokai-pro t) + ;; (use-package doom-themes + ;; :straight t + ;; :ensure t + ;; :config + ;; ;; Global settings (defaults) + ;; (setq doom-themes-enable-bold t ; if nil, bold is universally disabled + ;; doom-themes-enable-italic t) ; if nil, italics is universally disabled + ;; ;; load the theme + ;; (load-theme 'doom-monokai-pro t) - (doom-themes-org-config) + ;; (doom-themes-org-config) - (doom-themes-treemacs-config) + ;; (doom-themes-treemacs-config) - ;; Enable flashing mode-line on errors - (doom-themes-visual-bell-config)) + ;; ;; Enable flashing mode-line on errors + ;; (doom-themes-visual-bell-config)) + + (use-package nano-theme + :straight t + :config + (load-theme 'nano-dark t)) #+end_src ** All the Icons (to make doom-themes happy) #+begin_src emacs-lisp @@ -564,7 +568,6 @@ Should make startup faster, taken from doom-emacs (setq evil-want-keybinding nil) (setq evil-want-C-u-scroll t) (setq evil-want-C-i-jump nil) - :hook (evil-mode . sakomacs/evil-hook) :ensure t :demand :config @@ -1313,6 +1316,17 @@ okay this one is a bit more understandable (use-package ement :straight t) #+end_src +** Discord RPC +#+begin_src emacs-lisp +(use-package elcord +:straight t) +#+end_src> +** Email +isnt this like really old?? +#+begin_src emacs-lisp + (use-package gnus + :config) +#+end_src * Org Mode Configuration Setup ** Babel Languages #+begin_src emacs-lisp