From e51e478b05a3c29fb005c03084eb285635279f6c Mon Sep 17 00:00:00 2001 From: Jeremy Dormitzer Date: Sun, 23 Feb 2020 09:40:15 -0500 Subject: [PATCH] Add some X-specific customizations --- emacs/init.org | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/emacs/init.org b/emacs/init.org index 3e571a6..b1ca8e0 100755 --- a/emacs/init.org +++ b/emacs/init.org @@ -54,7 +54,8 @@ Another optimization from [[https://github.com/hlissner/doom-emacs/blob/develop/ ** Variables #+BEGIN_SRC emacs-lisp - (setq vc-follow-symlinks t) + (setq vc-follow-symlinks t + frame-resize-pixelwise t) #+END_SRC * Default directory @@ -5402,3 +5403,12 @@ Set up some keybindings for Comint-mode compilation buffers: (wallabag-username "jdormit") (wallabag-password (password-store-get "wallabag.jeremydormitzer.com"))) #+END_SRC + +* Clipmon +Syncs up the X Windows clipboard with the Emacs kill ring. Only +necessary on Linux. +#+BEGIN_SRC emacs-lisp + (use-package clipmon + :if (eq window-system 'x) + :hook (after-init . clipmon-mode-start)) +#+END_SRC