Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
takeokunn committed Dec 3, 2024
1 parent aa47f64 commit 6200c24
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions home-manager/programs/emacs/elisp/init.org
Original file line number Diff line number Diff line change
Expand Up @@ -1410,6 +1410,10 @@
(with-eval-after-load 'magit-log
;; keybinds
(define-key magit-log-mode-map (kbd "C-j") #'magit-visit-thing))

(with-eval-after-load 'magit-mode
;; config
(setopt magit-display-buffer-function #'magit-display-buffer-fullcolumn-most-v1))
#+END_SRC
*** magit-gptcommit
#+begin_src emacs-lisp :tangle yes
Expand Down Expand Up @@ -2561,6 +2565,7 @@
;; function
(defun my/update-projectile-known-projects ()
(interactive)
(projectile-remove-current-project-from-known-projects)
(projectile-clear-known-projects)
(projectile-cleanup-known-projects)
(setopt projectile-known-projects (mapcar
Expand All @@ -2570,7 +2575,6 @@

;; config
(setopt projectile-switch-project-action 'projectile-dired)
(setopt projectile-enable-caching t)
(setopt projectile-use-git-grep t))
#+end_src
** consult-projectile
Expand Down Expand Up @@ -3097,7 +3101,11 @@
#+begin_src emacs-lisp
(autoload-if-found '(global-emojify-mode) "emojify" nil t)

(add-hook 'emacs-startup-hook #'global-emojify-mode)
(with-eval-after-load 'text-mode
(add-hook 'text-mode-hook #'global-emojify-mode))

(with-eval-after-load 'org-mode
(remove-hook 'org-mode-hook #'emojify-mode))
#+end_src
*** nerd-icons-dired
#+begin_src emacs-lisp :tangle yes
Expand Down

0 comments on commit 6200c24

Please sign in to comment.