Added magit-file-icons

This commit is contained in:
Emmet 2024-06-25 14:55:20 -05:00
parent c70fc32197
commit dd0cc914a0
6 changed files with 194 additions and 0 deletions

View file

@ -1477,6 +1477,10 @@ https://github.com/magit/magit/issues/460 (@cpitclaudel)."
(setq magit-todos-keywords-list '("TODO" "FIXME" "HACK" "REVIEW" "DEPRECATED" "BUG"))
(magit-todos-mode 1)
(add-load-path! "~/.emacs.d/magit-file-icons")
(require 'magit-file-icons)
(magit-file-icons-mode 1)
#+END_SRC
** Ibuffer Configuration
#+BEGIN_SRC emacs-lisp :tangle config.el
@ -2091,6 +2095,7 @@ Any git package can be configured for a particular commit or branch:
(package! persist)
(package! sudo-edit)
(package! solaire-mode :disable t)
(package! el-patch)
#+END_SRC
* Nix Integration
In order to have Nix load my Doom Emacs configuration [[./doom.nix][doom.nix]], which I source in the =imports= block of my [[../../../profiles/work/home.nix][home.nix]].
@ -2206,6 +2211,10 @@ in
source = "${inputs.org-sliced-images}";
};
home.file.".emacs.d/magit-file-icons" = {
source = "${inputs.magit-file-icons}";
};
home.file.".emacs.d/dashboard-logo.webp".source = dashboardLogo;
home.file.".emacs.d/scripts/copy-link-or-file/copy-link-or-file-to-clipboard.sh" = {
source = ./scripts/copy-link-or-file/copy-link-or-file-to-clipboard.sh;