Fix no-littering, add delete-selection-mode, add fork

This commit is contained in:
Case Duckworth 2020-09-15 19:30:27 -05:00
parent 6b01b595a6
commit 019af58d77
1 changed files with 6 additions and 2 deletions

View File

@ -15,7 +15,7 @@
(setq load-prefer-newer t))
(use-package no-littering
:init
:config
(require 'recentf)
(add-to-list 'recentf-exclude no-littering-var-directory)
(add-to-list 'recentf-exclude no-littering-etc-directory)
@ -82,6 +82,7 @@
(global-visual-line-mode)
(mouse-avoidance-mode 'jump)
(setq show-paren-style 'mixed)
(delete-selection-mode 1)
;; TODO figure out how to add this to the :hook block
(add-hook 'prog-mode-hook (if (and (fboundp 'display-line-numbers-mode)
@ -480,7 +481,10 @@
(use-package exwm-mff
:straight (exwm-mff
:host github
:repo "duckwork/exwm-mff")
:repo "ieure/exwm-mff"
:fork (
:host github
:repo "duckwork/exwm-mff"))
:after exwm
:hook
(exwm-init-hook . exwm-mff-mode))