We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0b7f83 commit e47a8d0Copy full SHA for e47a8d0
lisp/jcs-package.el
@@ -336,6 +336,8 @@
336
lsp-sonarlint
337
lsp-sourcekit
338
lsp-tailwindcss
339
+ magit-file-icons
340
+ magit-lfs
341
magit-todos
342
makefile-executor
343
manage-minor-mode-table
modules/tools/magit/config.el
@@ -1,6 +1,7 @@
1
;;; tools/magit/config.el -*- lexical-binding: t; -*-
2
3
(require 'diff-hl)
4
+(require 'magit-lfs)
5
6
(use-package magit
7
:hook (magit-post-refresh . jcs-diff-hl-update)
@@ -19,6 +20,10 @@
19
20
'( magit-process-sentinel magit-commit-diff magit-run-git-async
21
git-commit-save-message)))
22
23
+(use-package magit-file-icons
24
+ :init
25
+ (magit-file-icons-mode 1))
26
+
27
(use-package magit-todos
28
:init
29
(setq magit-todos-nice (if (executable-find "nice") t nil)
0 commit comments