From 896a3946110aa7d4a03301061676baf276999ef2 Mon Sep 17 00:00:00 2001 From: KemoNine Date: Tue, 11 Apr 2023 12:32:17 -0400 Subject: [PATCH] disable xclip for day job (doesnt apply) --- common/_global.el | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/common/_global.el b/common/_global.el index ad167b6..ee6cdd0 100644 --- a/common/_global.el +++ b/common/_global.el @@ -13,11 +13,11 @@ (add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/") t) ; this goes in chemacs2 init -- DO NOT UNCOMMENT (package-initialize) ; this goes in chemacs2 init -- DO NOT UNCOMMENT (add-to-list 'package-selected-packages - '(scratch persistent-scratch persp-mode rainbow-mode rainbow-delimiters markdown-mode focus zoom popwin dired-single diredfl xclip doominhibitinhibit-modeline helpful helm helm-org dired-rainbow dired-rainbow-listing dired-single dash s origami modus-themes use-package) + '(scratch persistent-scratch persp-mode rainbow-mode rainbow-delimiters markdown-mode focus zoom popwin dired-single diredfl doominhibitinhibit-modeline helpful helm helm-org dired-rainbow dired-rainbow-listing dired-single dash s origami modus-themes use-package) ) (when (not kmn/is-dayjob) (add-to-list 'package-selected-packages - '(devdocs devdocs-browser magit helm-ls-git) + '(devdocs devdocs-browser magit helm-ls-git xclip) ) ) (require 'use-package) @@ -247,9 +247,11 @@ (global-auto-revert-mode 1) ; Clipboard integration +(when (not kmn/is-dayjob) (use-package xclip :config (xclip-mode 1)) +) -;; use y or n instead of yes or not +;; use y or n instead of yes or no (fset 'yes-or-no-p 'y-or-n-p) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;