Browse Source

added general and imenu-list keymap

master
Marc 4 years ago
parent
commit
f14638010a
1 changed files with 13 additions and 0 deletions
  1. 13
      init.org

13
init.org

@ -237,6 +237,19 @@ Some windows specific stuff
:config
(evil-mode 1))
#+END_SRC
* General (key mapper)
#+BEGIN_SRC emacs-lisp
(use-package general
:ensure t)
(general-define-key
:states 'normal
:keymaps 'imenu-list-major-mode-map
(kbd "RET") '(imenu-list-goto-entry :which-key "goto")
(kbd "TAB") '(hs-toggle-hiding :which-key "collapse")
"d" '(imenu-list-display-entry :which-key "show")
"q" '(imenu-list-quit-window :which-key "quit"))
#+END_SRC
* orgmode
** org
#+BEGIN_SRC emacs-lisp

Loading…
Cancel
Save