add completion and spell, syntax and version checking, deft and treemacs and bibliography settings

This commit is contained in:
2020-12-05 15:08:51 +01:00
parent e7a29d6f32
commit c06aba2ba4
7 changed files with 524 additions and 0 deletions

18
settings/deft-settings.el Normal file
View File

@@ -0,0 +1,18 @@
;;; deft-settings.el --- deft settings -*- lexical-binding: t -*-
;;; Commentary:
;; https://melpa.org/#/deft
;; https://jblevins.org/projects/deft/
;;; Code:
(use-package deft
:bind ("C-x C-S-d" . deft-find-file)
:config
(setq deft-directory "~/Sync")
;; (setq deft-extensions '("org" "md" "txt"))
(setq deft-use-filename-as-title t)
(setq deft-use-filter-string-for-filename t)
)
(provide 'deft-settings)
;;; deft-settings.el ends here