Adding fish, sly, and company and no littering...
This commit is contained in:
parent
677fb44922
commit
8ae7508ba4
3 changed files with 47 additions and 1 deletions
24
README.org
24
README.org
|
@ -21,6 +21,8 @@
|
|||
- [[#calendar][Calendar]]
|
||||
- [[#magit][Magit]]
|
||||
- [[#eshell][Eshell]]
|
||||
- [[#sly][Sly]]
|
||||
- [[#company][Company]]
|
||||
- [[#pdf-tools][PDF-Tools]]
|
||||
- [[#epub][EPUB]]
|
||||
- [[#window-management][Window Management]]
|
||||
|
@ -56,7 +58,7 @@ Let's also set the =gc-cons-threshold= variable to a high setting for the remain
|
|||
** Keep Folders Clean
|
||||
|
||||
Let's use =no-littering= in order to stop emacs from filling all our folders with junk.
|
||||
#+begin_src emacs-lisp :tangle no
|
||||
#+begin_src emacs-lisp
|
||||
(use-package no-littering)
|
||||
|
||||
;; no-littering doesn't set this by default so we must place
|
||||
|
@ -534,6 +536,12 @@ I do a lot of docker management so having yaml is necessary
|
|||
:mode ("\\.yml\\'" . yaml-mode))
|
||||
#+end_src
|
||||
|
||||
*** Fish
|
||||
#+begin_src emacs-lisp
|
||||
(use-package fish-mode
|
||||
:mode ("\\.fish\\'" . fish-mode))
|
||||
#+end_src
|
||||
|
||||
** File Management
|
||||
*** Dired
|
||||
#+begin_src emacs-lisp
|
||||
|
@ -1331,6 +1339,20 @@ Let's add our own eshell prompt. and set the password cache to a significantly h
|
|||
"C-d" 'kill-this-buffer))
|
||||
#+end_src
|
||||
|
||||
** Sly
|
||||
Using sly makes a lot better common-lisp interaction within emacs.
|
||||
#+begin_src emacs-lisp
|
||||
(use-package sly
|
||||
:mode ("\\.lisp\\'" . sly-mode))
|
||||
#+end_src
|
||||
|
||||
** Company
|
||||
#+begin_src emacs-lisp
|
||||
(use-package company
|
||||
:defer 1
|
||||
:config (global-company-mode +1))
|
||||
#+end_src
|
||||
|
||||
** PDF-Tools
|
||||
Let's use pdf-tools for a lot better interaction with pdfs.
|
||||
#+begin_src emacs-lisp
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue