diff --git a/init.org b/init.org index 31d0c34..9ce6cf4 100644 --- a/init.org +++ b/init.org @@ -127,8 +127,8 @@ This function updates init.el whenever changes in init.org are made. The update #+END_SRC #+BEGIN_SRC emacs-lisp -(defvar MY--PATH_USER_LOCAL (expand-file-name "~/.emacs.d/user-local/")) -(defvar MY--PATH_USER_GLOBAL (expand-file-name "~/.emacs.d/user-global/")) +(defvar MY--PATH_USER_LOCAL (expand-file-name "~/.config/emacs/user-local/")) +(defvar MY--PATH_USER_GLOBAL (expand-file-name "~/.config/emacs/user-global/")) (add-to-list 'custom-theme-load-path (concat MY--PATH_USER_GLOBAL "themes")) @@ -200,7 +200,7 @@ Edit bookmarks (while in bookmark file): Some windows specific stuff #+BEGIN_SRC emacs-lisp (when *sys/windows* - (remove-hook 'find-file-hooks 'vc-refresh-state) + (remove-hook 'find-file-hook 'vc-refresh-state) (progn (setq gc-cons-threshold (* 511 1024 1024) gc-cons-percentage 0.5 @@ -505,7 +505,7 @@ Windows Theme: (setq org-default-notes-file (concat MY--PATH_ORG_FILES "notes.org") org-agenda-files (list (concat MY--PATH_ORG_FILES "notes.org") (concat MY--PATH_ORG_FILES "projects.org") - (concat MY--PATH_ORG_FILES "todo.org"))) + (concat MY--PATH_ORG_FILES "tasks.org"))) (when *sys/linux* (setq org-agenda-files (list org-agenda-files MY--PATH_ORG_FILES_MOBILE))) @@ -963,7 +963,7 @@ apt install build-essential python3-dev (lsp))) :init (setq lsp-python-ms-executable - "~/.emacs.d/mspyls/Microsoft.Python.LanguageServer") + "~/.config/emacs/mspyls/Microsoft.Python.LanguageServer") :custom (lsp-python-executable-cmd "python3")))