|
|
@ -180,7 +180,7 @@ Various stuff |
|
|
|
|
|
|
|
* Mode Line |
|
|
|
Change the default mode line to something prettier. [[https://github.com/Malabarba/smart-mode-line][Source]] |
|
|
|
|
|
|
|
|
|
|
|
#+BEGIN_SRC emacs-lisp |
|
|
|
(use-package smart-mode-line |
|
|
|
:ensure t |
|
|
@ -467,6 +467,15 @@ Info in Emacs: M-x customize-group which-key |
|
|
|
#+end_src |
|
|
|
|
|
|
|
|
|
|
|
* Undo |
|
|
|
#+BEGIN_SRC emacs-lisp |
|
|
|
(use-package undo-tree |
|
|
|
:ensure t |
|
|
|
:diminish undo-tree-mode |
|
|
|
:init |
|
|
|
(undo-tree-mode)) |
|
|
|
#+END_SRC |
|
|
|
|
|
|
|
* Ido (currently inactive) |
|
|
|
better completion |
|
|
|
|
|
|
@ -489,10 +498,11 @@ end_src |
|
|
|
|
|
|
|
|
|
|
|
* Recentf |
|
|
|
Requires counsel |
|
|
|
|
|
|
|
#+begin_src emacs-lisp |
|
|
|
(use-package recentf |
|
|
|
; :bind ("C-x C-r" . counsel-recentf) |
|
|
|
(use-package recentf |
|
|
|
:init |
|
|
|
(setq recentf-save-file (concat PATH_USER_LOCAL "recentf")) |
|
|
|
:config |
|
|
|
(recentf-mode t) |
|
|
|
(setq recentf-max-saved-items 200) |
|
|
@ -557,6 +567,7 @@ Swiper ivy-enhances isearch |
|
|
|
) |
|
|
|
#+end_src |
|
|
|
|
|
|
|
|
|
|
|
* Latex |
|
|
|
Requirements for Linux: |
|
|
|
- Latex |
|
|
|