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