From a80c3540713bdc58bdc0be3f0724ff36622517ea Mon Sep 17 00:00:00 2001 From: LLoyderino Date: Sun, 1 Jun 2025 20:21:26 +0200 Subject: Fixed various minor mistakes in the configuration file --- init.el | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/init.el b/init.el index eb71cf0..4df4a30 100644 --- a/init.el +++ b/init.el @@ -1,5 +1,5 @@ ;; Please no custom file -(setq custom-file (locate-user-emacs-file "emacs-custom.el") +(setq custom-file (locate-user-emacs-file "emacs-custom.el")) (load custom-file 'noerror 'nomessage) ;; Start maximized @@ -27,7 +27,7 @@ (setq global-auto-revert-non-file-buffers t) ; Update dired when directory changes ;; Catppuccin theme -(load "~/.emacs.d/theme.el") +(load (locate-user-emacs-file "theme.el")) ;; pdf-tools (use-package pdf-tools) @@ -43,6 +43,7 @@ (use-package markdown-mode) ;; Flymake +(require 'flymake) (setq flymake-show-diagnostics-at-end-of-line t) (define-key flymake-mode-map (kbd "M-n") 'flymake-goto-next-error) (define-key flymake-mode-map (kbd "M-p") 'flymake-goto-prev-error) -- cgit v1.3.1