dotfiles

My dotfiles.
Log | Files | Refs | LICENSE

init.el (2241B)


      1 ;;; package --- Summary
      2 
      3 ;;; Commentary:
      4 
      5 
      6 ;;; Code:
      7 
      8 (require 'package)
      9 
     10 (package-initialize)
     11 
     12 ;(setq package-check-signature nil)
     13 
     14 (add-to-list 'package-archives
     15              '("melpa" . "https://melpa.org/packages/") t)
     16 
     17 (unless (package-installed-p 'quelpa)
     18   (with-temp-buffer
     19       (url-insert-file-contents "https://github.com/quelpa/quelpa/raw/master/quelpa.el")
     20       (eval-buffer)
     21       (quelpa-self-upgrade)))
     22 
     23 (unless (package-installed-p 'quelpa-use-package)
     24     (package-refresh-contents)
     25     (package-install 'quelpa-use-package))
     26 
     27 (setq gnutls-algorithm-priority "NORMAL:-VERS-TLS1.3")
     28 (org-babel-load-file "~/.emacs.d/lisp/config.org")
     29 
     30 
     31 
     32 (put 'narrow-to-region 'disabled nil)
     33 
     34 
     35 (provide '.emacs)
     36 ;;; .emacs ends here
     37 (custom-set-variables
     38  ;; custom-set-variables was added by Custom.
     39  ;; If you edit it by hand, you could mess it up, so be careful.
     40  ;; Your init file should contain only one such instance.
     41  ;; If there is more than one, they won't work right.
     42  '(org-display-custom-times 1)
     43  '(org-export-with-sub-superscripts '{})
     44  '(org-time-stamp-custom-formats '("<%b %e %G>" . "<%m/%d/%y %a %H:%M>"))
     45  '(package-selected-packages
     46    '(auctex-cluttex auctex-latexmk auctex-lua company-auctex auctex inf-clojure cider clojure-mode clojure-mode-extra-font-locking clojure-quick-repls clojure-snippets json-mode crontab-mode rainbow-mode impatient-mode vterm rust-mode systemd yasnippet-snippets yasnippet gitignore-mode company flycheck wc-mode htmlize fic-mode emojify org-bullets use-package-hydra use-package-ensure-system-package use-package-el-get use-package-chords undo-tree quelpa-use-package mu4e-query-fragments mu4e-overview mu4e-maildirs-extension mu4e-jump-to-list mu4e-conversation mu4e-alert modus-vivendi-theme modus-operandi-theme ivy-ycmd ivy-avy highlight fish-mode elfeed-web elfeed-score elfeed-protocol elfeed-org elfeed-goodies csgo-conf-mode counsel))
     47  '(safe-local-variable-values '((company-mode) (flycheck-mode))))
     48 (custom-set-faces
     49  ;; custom-set-faces was added by Custom.
     50  ;; If you edit it by hand, you could mess it up, so be careful.
     51  ;; Your init file should contain only one such instance.
     52  ;; If there is more than one, they won't work right.
     53  )
     54 (put 'downcase-region 'disabled nil)