summaryrefslogtreecommitdiff
path: root/.emacs.d/init.el
diff options
context:
space:
mode:
Diffstat (limited to '.emacs.d/init.el')
-rw-r--r--.emacs.d/init.el30
1 files changed, 6 insertions, 24 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el
index ef73cdc..da8e000 100644
--- a/.emacs.d/init.el
+++ b/.emacs.d/init.el
@@ -104,7 +104,7 @@ Contains the list of packages that need to be installed.")
(load "keys.el")
(load "all-the-icons-dired.el")
;;(load "secret")
-(load "org-config")
+;;(load "org-config")
(load-file custom-file) ;; Load custom.el
;; if you are using guix, emacs-exwm will look for ~/.exwm.el
@@ -276,7 +276,7 @@ Contains the list of packages that need to be installed.")
;;Essentials
(electric-pair-mode 1)
-(setq sgml-quick-keys 'close)
+(setq sgml-quick-keys nil)
;;emacs-lisp
@@ -360,10 +360,10 @@ Contains the list of packages that need to be installed.")
;; (delete-char sgml-basic-offset)))))
(use-package typescript-mode
-:mode ".ts'"
-:hook (typescript-mode .lsp-deferred)
-:config
-(setq typescript-indent-level 2))
+ :mode ".ts'"
+ :hook (typescript-mode .lsp-deferred)
+ :config
+ (setq typescript-indent-level 2))
(use-package python-mode
:ensure t
@@ -450,24 +450,6 @@ Contains the list of packages that need to be installed.")
(use-package sudo-edit)
-(defun apollo/exwm-init-hook ()
- "Do this upon start."
- (display-battery-mode 0) ;;Change to 1 to display battery
-
- (setq display-time-day-and-date t)
- (display-time-mode 1)
-
- ;;Launch apps that will run in the background
-;; (apollo/run-in-background "blueman-applet")
- (apollo/run-in-background "picom")
-;; (apollo/run-in-background "nm-applet")
- (apollo/emacs-keys)
- (apollo/restore-wallpaper)
- )
-
-(defun apollo/exwm-update-class ()
- (exwm-workspace-rename-buffer exwm-class-name))
-
(use-package consult
:ensure t
:bind(("M-g g" . consult-goto-line)))