configure xclip package for Emacs

This commit is contained in:
Fabio Scotto di Santolo
2026-05-16 09:17:39 +02:00
parent dbe135cbdb
commit ea588a3fc8
2 changed files with 13 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
;;; misc-xclip.el -*- lexical-binding: t; -*-
(use-package xclip
:ensure t
:config
(xclip-mode t)
(setq xclip-method 'xclip))
(provide 'xclip)
;;; xclip.el ends here