Even more formatting.
This commit is contained in:
@@ -553,7 +553,6 @@ We want to have some nice looking icons
|
|||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(use-package all-the-icons)
|
(use-package all-the-icons)
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
** Recentf
|
** Recentf
|
||||||
Show recent files in the buffer selection
|
Show recent files in the buffer selection
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
@@ -563,14 +562,12 @@ Show recent files in the buffer selection
|
|||||||
(add-to-list 'recentf-exclude "\\.emacs.d")
|
(add-to-list 'recentf-exclude "\\.emacs.d")
|
||||||
(add-to-list 'recentf-exclude ".+tmp......\\.org"))
|
(add-to-list 'recentf-exclude ".+tmp......\\.org"))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
** Rainbow Delimiters
|
** Rainbow Delimiters
|
||||||
We want to have some nicely colored delimiters when reading and writing lisp code
|
We want to have some nicely colored delimiters when reading and writing lisp code
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(use-package rainbow-delimiters
|
(use-package rainbow-delimiters
|
||||||
:hook (prog-mode . rainbow-delimiters-mode))
|
:hook (prog-mode . rainbow-delimiters-mode))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
** Markdown Mode
|
** Markdown Mode
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(use-package markdown-mode
|
(use-package markdown-mode
|
||||||
@@ -579,17 +576,15 @@ We want to have some nicely colored delimiters when reading and writing lisp cod
|
|||||||
(when (executable-find "pandoc")
|
(when (executable-find "pandoc")
|
||||||
(setq markdown-command "pandoc -f markdown -t html")))
|
(setq markdown-command "pandoc -f markdown -t html")))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
** Duplicate Thing
|
** Duplicate Thing
|
||||||
Quick bind to ~C-c u~ to duplicate the current line
|
Quick bind to ~C-c u~ to duplicate the current line
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(use-package duplicate-thing
|
(use-package duplicate-thing
|
||||||
:bind (("C-c u" . duplicate-thing)))
|
:bind (("C-c u" . duplicate-thing)))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
** ACE Window
|
** ACE Window
|
||||||
Small package to quickly switch tiled windows.
|
Small package to quickly switch tiled windows.
|
||||||
Use ~M-p~ to quickly switch.
|
Use ~M-o~ to quickly switch.
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(use-package ace-window
|
(use-package ace-window
|
||||||
:bind (("M-o" . 'ace-window))
|
:bind (("M-o" . 'ace-window))
|
||||||
@@ -604,14 +599,12 @@ HTML Exporter for org-mode
|
|||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(use-package htmlize)
|
(use-package htmlize)
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
** Autocompletion
|
** Autocompletion
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(use-package company
|
(use-package company
|
||||||
:config
|
:config
|
||||||
(global-company-mode))
|
(global-company-mode))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
** vterm
|
** vterm
|
||||||
[[https://github.com/akermu/emacs-libvterm][vterm]] is a superiour alternative to the integrated eshell, shell or term modes.
|
[[https://github.com/akermu/emacs-libvterm][vterm]] is a superiour alternative to the integrated eshell, shell or term modes.
|
||||||
The packages only works on linux and reuqires that emacs is compiled with module support (the ~module-file-suffix~ variable will be filled).
|
The packages only works on linux and reuqires that emacs is compiled with module support (the ~module-file-suffix~ variable will be filled).
|
||||||
|
|||||||
Reference in New Issue
Block a user