mirror of
https://github.com/librephoenix/nixos-config
synced 2025-07-06 06:52:13 +05:30
Added magit-file-icons
This commit is contained in:
parent
c70fc32197
commit
dd0cc914a0
6 changed files with 194 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue