Clipetty, some other stuff
This commit is contained in:
parent
a7640100f3
commit
9337212108
1 changed files with 17 additions and 1 deletions
|
@ -32,12 +32,13 @@
|
||||||
'(display-line-numbers-grow-only t)
|
'(display-line-numbers-grow-only t)
|
||||||
'(display-line-numbers-type 'visual)
|
'(display-line-numbers-type 'visual)
|
||||||
'(display-line-numbers-width-start t)
|
'(display-line-numbers-width-start t)
|
||||||
|
'(evil-cross-lines t)
|
||||||
'(package-archives
|
'(package-archives
|
||||||
'(("gnu" . "https://elpa.gnu.org/packages/")
|
'(("gnu" . "https://elpa.gnu.org/packages/")
|
||||||
("melpa" . "https://melpa.org/packages/")
|
("melpa" . "https://melpa.org/packages/")
|
||||||
("org" . "https://orgmode.org/elpa/")))
|
("org" . "https://orgmode.org/elpa/")))
|
||||||
'(package-selected-packages
|
'(package-selected-packages
|
||||||
'(wakatime-mode super-save ox-pandoc evil-surround evil-collection undo-tree toc-org evil-org org-plus-contrib evil-goggles evil-expat evil-commentary auto-package-update lispy smartparens which-key git-gutter rainbow-delimiters auto-complete-distel auto-complete evil magit evil-magit))
|
'(clipetty wakatime-mode super-save ox-pandoc evil-surround evil-collection undo-tree toc-org evil-org org-plus-contrib evil-goggles evil-expat evil-commentary auto-package-update lispy smartparens which-key git-gutter rainbow-delimiters auto-complete-distel auto-complete evil magit evil-magit))
|
||||||
'(undo-tree-auto-save-history t)
|
'(undo-tree-auto-save-history t)
|
||||||
'(undo-tree-history-directory-alist '(("." . "~/.undohist-emacs")))
|
'(undo-tree-history-directory-alist '(("." . "~/.undohist-emacs")))
|
||||||
'(undo-tree-visualizer-diff t)
|
'(undo-tree-visualizer-diff t)
|
||||||
|
@ -55,7 +56,9 @@
|
||||||
'(evil-goggles-undo-redo-remove-face ((t (:inherit diff-removed))))
|
'(evil-goggles-undo-redo-remove-face ((t (:inherit diff-removed))))
|
||||||
'(evil-goggles-yank-face ((t (:inherit diff-changed))))
|
'(evil-goggles-yank-face ((t (:inherit diff-changed))))
|
||||||
'(fringe ((t (:background "brightgreen" :foreground "black"))))
|
'(fringe ((t (:background "brightgreen" :foreground "black"))))
|
||||||
|
'(header-line ((t (:inherit mode-line :foreground "color-127"))))
|
||||||
'(highlight ((t (:background "brightgreen" :foreground "black"))))
|
'(highlight ((t (:background "brightgreen" :foreground "black"))))
|
||||||
|
'(isearch ((t (:background "black" :foreground "brightmagenta"))))
|
||||||
'(lazy-highlight ((t (:background "black" :foreground "blue" :inverse-video t))))
|
'(lazy-highlight ((t (:background "black" :foreground "blue" :inverse-video t))))
|
||||||
'(line-number ((t (:background "blue" :foreground "black"))))
|
'(line-number ((t (:background "blue" :foreground "black"))))
|
||||||
'(line-number-major-tick ((t (:background "grey75" :foreground "black" :weight bold))))
|
'(line-number-major-tick ((t (:background "grey75" :foreground "black" :weight bold))))
|
||||||
|
@ -67,6 +70,8 @@
|
||||||
'(magit-diff-hunk-heading-selection ((t (:inherit magit-diff-hunk-heading-highlight :extend t :foreground "brightred"))))
|
'(magit-diff-hunk-heading-selection ((t (:inherit magit-diff-hunk-heading-highlight :extend t :foreground "brightred"))))
|
||||||
'(magit-header-line ((t (:background "brightyellow" :foreground "black" :weight bold))))
|
'(magit-header-line ((t (:background "brightyellow" :foreground "black" :weight bold))))
|
||||||
'(magit-section-highlight ((t (:extend t :background "brightgreen" :foreground "black" :slant italic))))
|
'(magit-section-highlight ((t (:extend t :background "brightgreen" :foreground "black" :slant italic))))
|
||||||
|
'(mode-line ((t (:background "brightblue" :foreground "brightwhite" :box nil))))
|
||||||
|
'(mode-line-buffer-id ((t (:foreground "white"))))
|
||||||
'(region ((t (:extend t :background "brightyellow" :foreground "black"))))
|
'(region ((t (:extend t :background "brightyellow" :foreground "black"))))
|
||||||
'(tooltip ((t (:background "brightgreen" :foreground "black")))))
|
'(tooltip ((t (:background "brightgreen" :foreground "black")))))
|
||||||
|
|
||||||
|
@ -193,6 +198,12 @@
|
||||||
(use-package wakatime-mode
|
(use-package wakatime-mode
|
||||||
:hook (after-init . global-wakatime-mode))
|
:hook (after-init . global-wakatime-mode))
|
||||||
|
|
||||||
|
;; Clipetty (clipboard stuff)
|
||||||
|
(use-package clipetty
|
||||||
|
:ensure t
|
||||||
|
:hook (after-init . global-clipetty-mode))
|
||||||
|
|
||||||
|
|
||||||
;; Org Mode
|
;; Org Mode
|
||||||
(use-package org
|
(use-package org
|
||||||
:mode (("\\.org$" . org-mode))
|
:mode (("\\.org$" . org-mode))
|
||||||
|
@ -213,6 +224,11 @@
|
||||||
(use-package ox-pandoc
|
(use-package ox-pandoc
|
||||||
:after (org))
|
:after (org))
|
||||||
|
|
||||||
|
;; Don't use system clipboard by default
|
||||||
|
(setq-default
|
||||||
|
interprogram-cut-function nil
|
||||||
|
interprogram-paste-function nil
|
||||||
|
x-select-enable-clipboard nil)
|
||||||
|
|
||||||
(setq cider-font-lock-dynamically '(macro core function var))
|
(setq cider-font-lock-dynamically '(macro core function var))
|
||||||
;; These don't work yet?
|
;; These don't work yet?
|
||||||
|
|
Loading…
Add table
Reference in a new issue