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
17
init.el
17
init.el
|
@ -7,6 +7,13 @@
|
|||
gcs-done))
|
||||
(add-hook 'emacs-startup-hook #'chris/display-startup-time)
|
||||
|
||||
(use-package no-littering)
|
||||
|
||||
;; no-littering doesn't set this by default so we must place
|
||||
;; auto save files in the same path as it uses for sessions
|
||||
(setq auto-save-file-name-transforms
|
||||
`((".*" ,(no-littering-expand-var-file-name "auto-save/") t)))
|
||||
|
||||
(setq inhibit-startup-message t)
|
||||
|
||||
(scroll-bar-mode -1)
|
||||
|
@ -311,6 +318,9 @@ vertically."
|
|||
(use-package yaml-mode
|
||||
:mode ("\\.yml\\'" . yaml-mode))
|
||||
|
||||
(use-package fish-mode
|
||||
:mode ("\\.fish\\'" . fish-mode))
|
||||
|
||||
(use-package dired
|
||||
:ensure nil
|
||||
:straight nil
|
||||
|
@ -1021,6 +1031,13 @@ If on a:
|
|||
(general-def '(normal insert) eshell-mode-map
|
||||
"C-d" 'kill-this-buffer))
|
||||
|
||||
(use-package sly
|
||||
:mode ("\\.lisp\\'" . sly-mode))
|
||||
|
||||
(use-package company
|
||||
:defer 1
|
||||
:config (global-company-mode +1))
|
||||
|
||||
(use-package pdf-tools
|
||||
:straight (:host github
|
||||
:repo "flatwhatson/pdf-tools"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue