Add missing packages "htmlize" and "ace-window"
This commit is contained in:
@@ -518,6 +518,19 @@ This is my configuration for the emacs editor.
|
||||
"C-c o"
|
||||
)))
|
||||
#+END_SRC
|
||||
** htmlize
|
||||
HTML Exporter for org-mode
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
(use-package htmlize)
|
||||
#+END_SRC
|
||||
|
||||
** ACE Window
|
||||
Small package to quickly switch tiled windows.
|
||||
Use ~M-p~ to quickly switch.
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
(use-package ace-window
|
||||
:bind (("M-p" . 'ace-window)))
|
||||
#+END_SRC
|
||||
* Set Variables
|
||||
** General Emacs Options
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
@@ -633,7 +646,6 @@ This is my configuration for the emacs editor.
|
||||
(bind-key "C-c 3" 'split-right-and-enter)
|
||||
(bind-key "C-c 2" 'split-below-and-enter)
|
||||
(bind-key "C-c p" 'switch-to-previous-buffer)
|
||||
(bind-key "M-p" 'ace-window)
|
||||
(bind-key "C-c /" 'comment-or-uncomment-region)
|
||||
(bind-key "C-c x" 'ESC-prefix)
|
||||
(bind-key "M-i" 'delete-indentation)
|
||||
|
||||
Reference in New Issue
Block a user