diff --git a/.config/emacs/config.org b/.config/emacs/config.org
index 2179976..b3139d7 100644
--- a/.config/emacs/config.org
+++ b/.config/emacs/config.org
@@ -11,7 +11,6 @@
* Table of Contents :toc_4:
- [[#initial-setup][Initial setup]]
- - [[#irony-mode][Irony mode]]
- [[#all-the-icons][All the icons]]
- [[#lexical-binding][Lexical Binding]]
- [[#global-variables][Global Variables]]
@@ -91,10 +90,6 @@
These commands need to be run after the first startup.
-** Irony mode
-
-@@html:@@M-x@@html:@@ =irony-install-server= @@html:@@RET@@html:@@
-
** All the icons
@@html:@@M-x@@html:@@ =all-the-icons-install-fonts= @@html:@@RET@@html:@@
@@ -574,31 +569,10 @@ On the fly syntax checking.
**** C/C++
-Irony requires M-x =irony-install-server=.
-
#+BEGIN_SRC emacs-lisp
- (use-package irony
- :hook
- ((c-mode
- c++-mode)
- . irony-mode)
- :hook (irony-mode . irony-cdb-autosetup-compile-options)
- :init (setq irony-user-dir (concat dot-cache-dir "/irony/"))
- :config
- (push 'glsl-mode irony-supported-major-modes)
-
- ;; Compile the irony-server binary if it doesnt exist
- (unless (file-exists-p (concat irony-user-dir "bin/irony-server"))
- (call-interactively 'irony-install-server)))
-
- (use-package company-irony
- :after (company irony)
- :config (push 'company-irony company-backends))
-
(use-package company-c-headers
:after company
:config (push 'company-c-headers company-backends))
- ;; company-irony-c-headers
#+END_SRC
**** Org Roam Completion