diff options
author | Laura <the-ceo-of-antifa@protonmail.com> | 2023-04-26 16:21:10 +0200 |
---|---|---|
committer | Laura <the-ceo-of-antifa@protonmail.com> | 2023-04-26 16:21:10 +0200 |
commit | 6043397997210137390e96b9a238aa25250a7b32 (patch) | |
tree | f647ea62eee7164a288d7adb4ade4108672da773 | |
parent | cda28985e90ac4c9ee247aa4d83a0179cce31b96 (diff) | |
download | dotfiles-6043397997210137390e96b9a238aa25250a7b32.tar.gz dotfiles-6043397997210137390e96b9a238aa25250a7b32.zip |
add emacs
-rw-r--r-- | .config/emacs/init.el | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/.config/emacs/init.el b/.config/emacs/init.el new file mode 100644 index 0000000..dab0dff --- /dev/null +++ b/.config/emacs/init.el @@ -0,0 +1,35 @@ +(setq user-emacs-directory "~/.config/emacs/") + +(require 'package) +(add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/") t) +(package-initialize) +(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. + '(asm-comment-char 59) + '(auth-source-save-behavior nil) + '(auth-sources '(default "~/.authinfo.gpg" "~/.netrc")) + '(custom-enabled-themes '(catppuccin)) + '(custom-safe-themes + '("ef2b2346702e5cbfd7eeaa699ba58528477fe48af333e6ffdafb864a2f30a505" "0d2882cc7dbb37de573f14fdf53472bcfb4ec76e3d2f20c9a93a7b2fe1677bf5" "96871555d64815a906796e1e594a91245c2327c2bf57ec87ddf9c1668ef6069c" default)) + '(mediawiki-site-alist + '(("Wikipedia" "https://en.wikipedia.org/w/" "Maddy from Celeste" "" nil "Main Page"))) + '(package-selected-packages + '(mediawiki auctex eimp eglot ada-mode wisi portage-navi rust-mode csv-mode haskell-mode catppuccin-theme)) + '(tab-bar-mode t) + '(tool-bar-mode nil)) + +(load-theme 'catppuccin t) +(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. + '(default ((t (:family "Inconsolata" :foundry "PfEd" :slant normal :weight normal :height 113 :width normal))))) + +(add-to-list 'load-path "/usr/share/emacs/site-lisp/tex-utils") +(require 'xdvi-search) + +(menu-bar-mode -1) |