Hello direnv.

This commit is contained in:
Julien Palard 2022-04-23 15:06:57 +02:00
parent 7c18a26b6a
commit ec8eb68318
Signed by: mdk
GPG Key ID: 0EFC1AC1006886F8
1 changed files with 17 additions and 0 deletions

View File

@ -4,6 +4,11 @@
;;
;; Packages I typically use can be reinstalled by using:
;; M-x package-install-selected-packages
;;
;; To gather tags, according to emacs doc:
;;
;; find . -name "*.[chCH]" -print | etags -
(setq user-full-name "Julien Palard"
user-mail-address "julien@palard.fr")
@ -26,6 +31,11 @@
:init
(ido-mode t))
(use-package direnv
:ensure t
:config
(direnv-mode))
(use-package flycheck-grammalecte
:ensure t
:config (flycheck-grammalecte-setup))
@ -40,6 +50,8 @@
(use-package lsp-mode
:ensure t
:init
(setq lsp-keymap-prefix "C-c p")
:custom
(lsp-jedi-hover-disable-keyword-all t)
(lsp-signature-doc-lines 1)
@ -89,6 +101,11 @@
:config
(setq org-fancy-priorities-list '("" "" "" "")))
(add-hook 'org-mode-hook
(lambda() (setq header-line-format
'(:eval (org-display-outline-path nil t " > " t)))))
;; Disable transient mark mode, I don't like it:
(transient-mark-mode nil)