summary refs log tree commit diff
path: root/emacs.d/custom/fcuny-edit.el
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2021-01-04 19:52:04 -0800
committerFranck Cuny <franck@fcuny.net>2021-01-04 19:52:04 -0800
commit88ab401adc83bea6e1f571c54093dbc7f521e080 (patch)
treee2ae9336119ee36707b0e76a6592f4fc8503a4ef /emacs.d/custom/fcuny-edit.el
parentgit: store configuration under XDG_CONFIG_HOME (diff)
downloademacs.d-88ab401adc83bea6e1f571c54093dbc7f521e080.tar.gz
emacs: rename the directory
Diffstat (limited to 'emacs.d/custom/fcuny-edit.el')
-rw-r--r--emacs.d/custom/fcuny-edit.el39
1 files changed, 0 insertions, 39 deletions
diff --git a/emacs.d/custom/fcuny-edit.el b/emacs.d/custom/fcuny-edit.el
deleted file mode 100644
index 8ca5214..0000000
--- a/emacs.d/custom/fcuny-edit.el
+++ /dev/null
@@ -1,39 +0,0 @@
-(use-package autorevert
-  :config
-  (setq global-auto-revert-non-file-buffers t)
-  (setq auto-revert-verbose nil)
-  (global-auto-revert-mode t))
-
-(use-package whitespace
-  :hook ((prog-mode    . fcuny/whitespace-setup)
-         (conf-mode    . fcuny/whitespace-setup)
-         (outline-mode . fcuny/whitespace-setup)
-         (yaml-mode    . fcuny/whitespace-setup))
-
-  :custom
-  (whitespace-style '(face))
-  (show-trailing-whitespace nil)
-
-  :init
-  (defun fcuny/whitespace-setup ()
-    (setq show-trailing-whitespace t)))
-
-(use-package electric-pair-mode
-  :commands electric-pair-mode
-  :hook (prog-mode . electric-pair-mode))
-
-(use-package paren
-  :ensure t
-  :custom
-  (show-paren-delay 0)
-  (show-paren-when-point-inside-paren t)
-  (show-paren-when-point-in-periphery t)
-  :config
-  (show-paren-mode 1))
-
-(global-set-key (kbd "M-j") 'join-line)
-
-;; don't assume that sentences should have two spaces after period.
-(setq sentence-end-double-space nil)
-
-(provide 'fcuny-edit)