From 15734978b8ca610d58d4f75c259649500fdb7323 Mon Sep 17 00:00:00 2001 From: Kjetil Orbekk Date: Sat, 4 Feb 2023 20:20:30 -0500 Subject: config --- emacs/.config/emacs-kj/init.el | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) (limited to 'emacs/.config') diff --git a/emacs/.config/emacs-kj/init.el b/emacs/.config/emacs-kj/init.el index bb0184c..05204eb 100644 --- a/emacs/.config/emacs-kj/init.el +++ b/emacs/.config/emacs-kj/init.el @@ -52,6 +52,8 @@ vc-make-backup-files t create-lockfiles nil) +(use-package doom-themes) + ;; ;; Modus theme setup. (use-package emacs :init @@ -81,7 +83,9 @@ (use-package emojify :bind (("C-c C-i C-e" . emojify-insert-emoji)) - :hook (after-init . global-emojify-mode)) + :hook (after-init . global-emojify-mode) + :config + (emojify-set-emoji-styles '(unicode))) (setq-default show-trailing-whitespace t) (dolist (mode '(calendar-mode-hook eshell-mode-hook term-mode-hook)) @@ -752,6 +756,8 @@ :bind (:repeat-map kj/leader-map ("." . mc/mark-next-like-this) ("," . mc/mark-previous-like-this) + ("C-." . mc/mark-next-like-this) + ("C-," . mc/mark-previous-like-this) ("*" . mc/mark-all-like-this) ("w" . mc/mark-next-like-this-word) ("W" . mc/mark-all-words-like-this) @@ -769,8 +775,8 @@ ("S-" . mc/add-cursor-on-click)) :bind (:map selected-keymap - ("C->" . mc/skip-to-next-like-this) - ("C-<" . mc/skip-to-previous-like-this) + ("C-." . mc/skip-to-next-like-this) + ("C-," . mc/skip-to-previous-like-this) ("." . mc/mark-next-like-this) ("," . mc/mark-previous-like-this) ("w" . mc/mark-next-like-this-word) @@ -795,7 +801,6 @@ :ensure t ;; or :straight t :hook (repeat-mode . repeat-help-mode) :config - (setq repeat-help-auto t) (setq repeat-help-popup-type "which-key")) (repeat-mode 1) @@ -826,6 +831,7 @@ '(magit-mode compilation-mode comint-mode + Custom-mode ; For customization fig-commit-mode))))) (setq transient-display-buffer-action -- cgit v1.2.3