This commit is contained in:
zendesk-acicchetti 2021-05-05 11:22:23 -04:00
parent 7690e88544
commit a23c863e2e
3 changed files with 20 additions and 1 deletions

View file

@ -67,7 +67,7 @@
("melpa" . "https://melpa.org/packages/")
("org" . "https://orgmode.org/elpa/")))
'(package-selected-packages
'(go-mode org-roam ox-jira consult embark-consult embark selectrum-prescient prescient marginalia consult-flycheck consult-selectrum selectrum lua-mode lsp-mode yaml-mode evil-lispy treemacs-magit treemacs-evil treemacs lsp-pyright lsp-ui rustic flycheck origami groovy-mode avy editorconfig org-crypt tree-sitter-langs tree-sitter centaur-tabs dashboard page-break-lines wakatime-mode super-save ox-pandoc evil-surround evil-collection undo-tree toc-org evil-org org-plus-contrib evil-goggles evil-expat evil-commentary auto-package-update lispy smartparens which-key git-gutter rainbow-delimiters auto-complete-distel auto-complete evil magit evil-magit))
'(magit-delta go-mode org-roam ox-jira consult embark-consult embark selectrum-prescient prescient marginalia consult-flycheck consult-selectrum selectrum lua-mode lsp-mode yaml-mode evil-lispy treemacs-magit treemacs-evil treemacs lsp-pyright lsp-ui rustic flycheck origami groovy-mode avy editorconfig org-crypt tree-sitter-langs tree-sitter centaur-tabs dashboard page-break-lines wakatime-mode super-save ox-pandoc evil-surround evil-collection undo-tree toc-org evil-org org-plus-contrib evil-goggles evil-expat evil-commentary auto-package-update lispy smartparens which-key git-gutter rainbow-delimiters auto-complete-distel auto-complete evil magit evil-magit))
'(prescient-filter-method '(literal regexp initialism fuzzy))
'(ring-bell-function 'ignore)
'(rustic-format-trigger 'on-compile)
@ -201,6 +201,12 @@
(evil-define-key 'normal 'global (kbd "<leader>g") 'magit-file-dispatch)
(evil-define-key 'normal 'global (kbd "<leader>r") 'magit-status))
(use-package magit-delta
:after (magit)
:if (executable-find "delta")
:config
(add-hook 'magit-mode-hook (lambda () (magit-delta-mode +1))))
;; Lispy
(use-package lispy
:config (add-hook 'emacs-lisp-mode-hook (lambda () (lispy-mode 1))))

View file

@ -9,6 +9,9 @@
[core]
autocrlf = input
excludesfile = /Users/acicchetti/.gitignore
pager = delta
[interactive]
diffFilter = delta --color-only
[include]
path = ~/.gitconfig_local
[fetch]
@ -21,3 +24,6 @@
rebase = true
[init]
defaultBranch = main
[delta]
side-by-side = true
line-numbers = true

View file

@ -119,3 +119,10 @@
when:
- rust_extras == true
- name: Install delta
shell: ~/.cargo/bin/cargo install git-delta
args:
creates: ~/.cargo/bin/delta
when:
- rust_extras == true