Add some X-specific customizations

This commit is contained in:
Jeremy Dormitzer 2020-02-23 09:40:15 -05:00
parent b51deb0da1
commit e51e478b05

View File

@ -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