Add magit and set default theme
This commit is contained in:
parent
429984e9d9
commit
4203b007d3
1 changed files with 18 additions and 0 deletions
|
@ -630,6 +630,24 @@ write_files:
|
|||
;; File name to load inferior shells from
|
||||
(setq shell-file-name "/bin/bash")
|
||||
|
||||
(use-package magit
|
||||
:bind ("C-x g" . magit-status)
|
||||
:config
|
||||
(global-set-key (kbd "C-x M-g") 'magit-dispatch))
|
||||
|
||||
(custom-set-variables
|
||||
;; custom-set-variables was added by Custom.
|
||||
;; If you edit it by hand, you could mess it up, so be careful.
|
||||
;; Your init file should contain only one such instance.
|
||||
;; If there is more than one, they won't work right.
|
||||
'(custom-enabled-themes '(modus-vivendi)))
|
||||
(custom-set-faces
|
||||
;; custom-set-faces was added by Custom.
|
||||
;; If you edit it by hand, you could mess it up, so be careful.
|
||||
;; Your init file should contain only one such instance.
|
||||
;; If there is more than one, they won't work right.
|
||||
)
|
||||
|
||||
runcmd:
|
||||
# Run Certbot to obtain SSL certificates and configure Nginx
|
||||
- certbot certonly --nginx -d u1.metalisp.dev --non-interactive --agree-tos --email marcus.kammer@mailbox.org --redirect
|
||||
|
|
Loading…
Add table
Reference in a new issue