Update emacs.org

This commit is contained in:
Sako 2023-12-22 23:34:01 +04:00 committed by GitHub
parent 37c653d06f
commit 3888110e5b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,6 +1,5 @@
#+title: Sakomacs configuration #+title: Sakomacs configuration
#+PROPERTY: header-args:emacs-lisp :tangle ./init.el #+PROPERTY: header-args:emacs-lisp :tangle ./init.el
* Usage * Usage
M-x org-bable-tangle M-x org-bable-tangle
* Lexical Binding * Lexical Binding
@ -370,22 +369,27 @@ Should make startup faster, taken from doom-emacs
#+end_src #+end_src
** Custom Themes ** Custom Themes
#+begin_src emacs-lisp #+begin_src emacs-lisp
(use-package doom-themes ;; (use-package doom-themes
:straight t ;; :straight t
:ensure t ;; :ensure t
:config ;; :config
;; Global settings (defaults) ;; ;; Global settings (defaults)
(setq doom-themes-enable-bold t ; if nil, bold is universally disabled ;; (setq doom-themes-enable-bold t ; if nil, bold is universally disabled
doom-themes-enable-italic t) ; if nil, italics is universally disabled ;; doom-themes-enable-italic t) ; if nil, italics is universally disabled
;; load the theme ;; ;; load the theme
(load-theme 'doom-monokai-pro t) ;; (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 ;; ;; Enable flashing mode-line on errors
(doom-themes-visual-bell-config)) ;; (doom-themes-visual-bell-config))
(use-package nano-theme
:straight t
:config
(load-theme 'nano-dark t))
#+end_src #+end_src
** All the Icons (to make doom-themes happy) ** All the Icons (to make doom-themes happy)
#+begin_src emacs-lisp #+begin_src emacs-lisp
@ -564,7 +568,6 @@ Should make startup faster, taken from doom-emacs
(setq evil-want-keybinding nil) (setq evil-want-keybinding nil)
(setq evil-want-C-u-scroll t) (setq evil-want-C-u-scroll t)
(setq evil-want-C-i-jump nil) (setq evil-want-C-i-jump nil)
:hook (evil-mode . sakomacs/evil-hook)
:ensure t :ensure t
:demand :demand
:config :config
@ -1313,6 +1316,17 @@ okay this one is a bit more understandable
(use-package ement (use-package ement
:straight t) :straight t)
#+end_src #+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 * Org Mode Configuration Setup
** Babel Languages ** Babel Languages
#+begin_src emacs-lisp #+begin_src emacs-lisp