summaryrefslogtreecommitdiff
path: root/config.org
diff options
context:
space:
mode:
authoryuzu-eva <stevenhu@web.de>2023-10-28 17:44:38 +0200
committeryuzu-eva <stevenhu@web.de>2023-10-28 17:44:38 +0200
commit91215a012cf5ab61cc965fc0029aec7eb0bfe67a (patch)
tree2aa8467ca8aa59c71270716624a197c99b1108e5 /config.org
parent7836d8aeb40c6b0a99a4b4ff89309b47c1345a4b (diff)
cleaned up unused code and comments
Diffstat (limited to 'config.org')
-rw-r--r--config.org61
1 files changed, 2 insertions, 59 deletions
diff --git a/config.org b/config.org
index 10e1f0e..76838bd 100644
--- a/config.org
+++ b/config.org
@@ -605,63 +605,6 @@ Better way to switch windows
([remap other-window] . switch-window))
#+end_src
-# ** Initialize =evil=
-
-# vim keybindings in emacs text editing. I don't like emacs' default editor
-# keybinds. This emacs config uses vim keybinds only for text editing. Everthing
-# else still uses emacs bindings
-
-# #+begin_src emacs-lisp
-# (use-package evil
-# :ensure t
-# :defer nil
-# :init
-# (setq evil-want-keybinding nil)
-# (setq evil-want-C-u-scroll t)
-# :config
-# (evil-mode 1)
-# (evil-set-undo-system 'undo-redo)
-# (evil-set-initial-state 'dired-mode 'emacs))
-# #+end_src
-
-# ** Initialize =evil-org-mode=
-
-# Evil extension for org-mode
-
-# #+begin_src emacs-lisp
-# (use-package evil-org
-# :ensure t
-# :after org
-# :config
-# (require 'evil-org-agenda)
-# (evil-org-agenda-set-keys)
-# :init
-# (add-hook 'org-mode-hook 'evil-org-mode))
-# #+end_src
-
-# ** Initialize =evil-surround=
-
-# Minor mode that emulates vim-surround by Tim Pope
-
-# #+begin_src emacs-lisp
-# (use-package evil-surround
-# :ensure t
-# :config
-# (global-evil-surround-mode 1))
-# #+end_src
-
-# ** Initialize =evil-commentary=
-
-# Minor mode that emulates vim-commentary by Tim Pope
-
-# #+begin_src emacs-lisp
-# (use-package evil-commentary
-# :ensure t
-# :diminish evil-commentary-mode
-# :init
-# (evil-commentary-mode))
-# #+end_src
-
** Initialize =sly=
Sly REPL
@@ -794,10 +737,10 @@ Autocompletion backend for C and C++
Some keybinds to make life easier
-** Make <menu> do M-x
+** Make <menu> do M-x (currently set to smex)
#+begin_src emacs-lisp
- (global-set-key (kbd "<menu>") 'execute-extended-command)
+ (global-set-key (kbd "<menu>") 'smex)
#+end_src
** Open URL in browser