disable xclip for day job (doesnt apply)
This commit is contained in:
parent
3d4ff6a1d2
commit
896a394611
|
@ -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)
|
||||
|
||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||
|
|
Reference in a new issue