Add some X-specific customizations
This commit is contained in:
parent
b51deb0da1
commit
e51e478b05
@ -54,7 +54,8 @@ Another optimization from [[https://github.com/hlissner/doom-emacs/blob/develop/
|
|||||||
|
|
||||||
** Variables
|
** Variables
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(setq vc-follow-symlinks t)
|
(setq vc-follow-symlinks t
|
||||||
|
frame-resize-pixelwise t)
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
* Default directory
|
* Default directory
|
||||||
@ -5402,3 +5403,12 @@ Set up some keybindings for Comint-mode compilation buffers:
|
|||||||
(wallabag-username "jdormit")
|
(wallabag-username "jdormit")
|
||||||
(wallabag-password (password-store-get "wallabag.jeremydormitzer.com")))
|
(wallabag-password (password-store-get "wallabag.jeremydormitzer.com")))
|
||||||
#+END_SRC
|
#+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
|
||||||
|
Loading…
Reference in New Issue
Block a user