update init.el, add magit

This commit is contained in:
opFez 2020-12-24 12:27:57 +01:00
parent 848d3e768b
commit 370fcfef08
2 changed files with 8 additions and 2 deletions

View File

@ -12,6 +12,9 @@
(tool-bar-mode 0)
(scroll-bar-mode 0)
;; UTF-8!!!!
(set-language-environment "UTF-8")
;; Appearance
(set-frame-font "Terminus 12")
(set-face-italic 'font-lock-comment-face nil) ; disable italics
@ -81,8 +84,7 @@
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(package-selected-packages
(quote
(go-mode tao-themes tao-theme almost-mono-themes use-package))))
'(magit expand-region go-mode tao-themes tao-theme almost-mono-themes use-package)))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
@ -90,3 +92,4 @@
;; If there is more than one, they won't work right.
)
;;
(put 'downcase-region 'disabled nil)

View File

@ -57,3 +57,6 @@
:ensure t
:config
(add-hook 'xref-backend-functions #'dumb-jump-xref-activate))
(use-package magit
:ensure t)