Compare commits
2 commits
113f4faa4f
...
cd9fc69f3d
Author | SHA1 | Date | |
---|---|---|---|
cd9fc69f3d | |||
2df8189c91 |
1 changed files with 11 additions and 15 deletions
22
init.el
22
init.el
|
@ -68,7 +68,7 @@
|
||||||
(defun ccr/reload-emacs ()
|
(defun ccr/reload-emacs ()
|
||||||
(interactive)
|
(interactive)
|
||||||
(load-file "~/.config/emacs/init.el"))
|
(load-file "~/.config/emacs/init.el"))
|
||||||
(load-theme 'modus-operandi 't)
|
(load-theme 'dracula 't)
|
||||||
(defun ccr/nixos-rebuild ()
|
(defun ccr/nixos-rebuild ()
|
||||||
(interactive)
|
(interactive)
|
||||||
(let* ((operation (completing-read "nixos-rebuild " '("switch" "boot" "test" "dry-activate")))
|
(let* ((operation (completing-read "nixos-rebuild " '("switch" "boot" "test" "dry-activate")))
|
||||||
|
@ -87,13 +87,6 @@
|
||||||
(tramp-use-ssh-controlmaster-options nil) ;; makes tramp use ~/.ssh/config
|
(tramp-use-ssh-controlmaster-options nil) ;; makes tramp use ~/.ssh/config
|
||||||
)
|
)
|
||||||
|
|
||||||
;; (use-package dracula-theme
|
|
||||||
;; :config
|
|
||||||
;; (add-hook 'after-make-frame-functions (defun ccr/theme-init (_)
|
|
||||||
;; (load-theme 'dracula 't)
|
|
||||||
;; (meow--prepare-face)
|
|
||||||
;; (remove-hook 'after-make-frame-functions 'ccr/theme-init))))
|
|
||||||
|
|
||||||
(use-package ligature
|
(use-package ligature
|
||||||
:config
|
:config
|
||||||
(ligature-set-ligatures 't '("www"))
|
(ligature-set-ligatures 't '("www"))
|
||||||
|
@ -416,13 +409,16 @@
|
||||||
(which-key-setup-side-window-right))
|
(which-key-setup-side-window-right))
|
||||||
|
|
||||||
(use-package magit
|
(use-package magit
|
||||||
:hook ((magit-mode . magit-delta-mode))
|
|
||||||
:custom
|
|
||||||
(magit-todos-keyword-suffix "([^)]+):")
|
|
||||||
:config
|
|
||||||
(magit-todos-mode +1)
|
|
||||||
:bind (("C-c o g" . magit)))
|
:bind (("C-c o g" . magit)))
|
||||||
|
|
||||||
|
(use-package magit-delta
|
||||||
|
:hook (magit-mode . magit-delta-mode))
|
||||||
|
|
||||||
|
(use-package magit-todos
|
||||||
|
:after magit
|
||||||
|
:custom (magit-todos-keyword-suffix "\\(?:([^)]+)\\)?:?")
|
||||||
|
:config (magit-todos-mode 1))
|
||||||
|
|
||||||
(use-package difftastic
|
(use-package difftastic
|
||||||
:demand t
|
:demand t
|
||||||
:bind (:map magit-blame-read-only-mode-map
|
:bind (:map magit-blame-read-only-mode-map
|
||||||
|
|
Reference in a new issue