summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.emacs.d/init.el22
1 files changed, 19 insertions, 3 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el
index 61da89c..1005a92 100644
--- a/.emacs.d/init.el
+++ b/.emacs.d/init.el
@@ -3,6 +3,8 @@
(require 'package)
(add-to-list 'load-path "~/.emacs.d/lisp/")
+(load "~/.emacs.d/lisp/init-exwm.el")
+
(setq package-archives '(("melpa" . "https://melpa.org/packages/")
("org" . "https://orgmode.org/elpa/")
("elpa" . "https://elpa.gnu.org/packages/")))
@@ -33,8 +35,8 @@
;Visible bell
(setq visible-bell t)
;;Transparency
-;;(set-frame-parameter (selected-frame) 'alpha '(90 80))
-;;(add-to-list 'default-frame-alist '(alpha 90 50))
+(set-frame-parameter (selected-frame) 'alpha '(90 80))
+(add-to-list 'default-frame-alist '(alpha 90 50))
@@ -315,7 +317,8 @@
;; Automatically tangle our Emacs.org config file when we save it
(defun apollo/org-babel-tangle-config ()
(when (string-equal (buffer-file-name)
- (expand-file-name "~/.emacs.d/emacs.org"))
+ (expand-file-name "~/.emacs.d/emacs.org"
+ "~/.config/qtile/README.org"))
;; Dynamic scoping to the rescue
(let ((org-confirm-babel-evaluate nil))
(org-babel-tangle))))
@@ -449,3 +452,16 @@
;;init.el ends here
+(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.
+ '(package-selected-packages
+ '(dmenu exwm which-key vterm visual-fill-column use-package typescript-mode smart-cursor-color ranger rainbow-delimiters python-x python-mode prettier-js pdf-tools org-superstar org-evil org-bullets modus-themes magit lsp-ui lsp-ivy json-mode js2-mode ivy-rich helpful god-mode general flycheck eyebrowse evil-collection elpy elisp-lint elfeed-goodies doom-themes doom-modeline dired-ranger dap-mode counsel-projectile company-box command-log-mode buttercup all-the-icons)))
+(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.
+ )