|
@ -127,8 +127,8 @@ This function updates init.el whenever changes in init.org are made. The update |
|
|
#+END_SRC |
|
|
#+END_SRC |
|
|
|
|
|
|
|
|
#+BEGIN_SRC emacs-lisp |
|
|
#+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")) |
|
|
(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 |
|
|
Some windows specific stuff |
|
|
#+BEGIN_SRC emacs-lisp |
|
|
#+BEGIN_SRC emacs-lisp |
|
|
(when *sys/windows* |
|
|
(when *sys/windows* |
|
|
(remove-hook 'find-file-hooks 'vc-refresh-state) |
|
|
|
|
|
|
|
|
(remove-hook 'find-file-hook 'vc-refresh-state) |
|
|
(progn |
|
|
(progn |
|
|
(setq gc-cons-threshold (* 511 1024 1024) |
|
|
(setq gc-cons-threshold (* 511 1024 1024) |
|
|
gc-cons-percentage 0.5 |
|
|
gc-cons-percentage 0.5 |
|
@ -505,7 +505,7 @@ Windows Theme: |
|
|
(setq org-default-notes-file (concat MY--PATH_ORG_FILES "notes.org") |
|
|
(setq org-default-notes-file (concat MY--PATH_ORG_FILES "notes.org") |
|
|
org-agenda-files (list (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 "projects.org") |
|
|
(concat MY--PATH_ORG_FILES "todo.org"))) |
|
|
|
|
|
|
|
|
(concat MY--PATH_ORG_FILES "tasks.org"))) |
|
|
(when *sys/linux* |
|
|
(when *sys/linux* |
|
|
(setq org-agenda-files (list org-agenda-files |
|
|
(setq org-agenda-files (list org-agenda-files |
|
|
MY--PATH_ORG_FILES_MOBILE))) |
|
|
MY--PATH_ORG_FILES_MOBILE))) |
|
@ -963,7 +963,7 @@ apt install build-essential python3-dev |
|
|
(lsp))) |
|
|
(lsp))) |
|
|
:init |
|
|
:init |
|
|
(setq lsp-python-ms-executable |
|
|
(setq lsp-python-ms-executable |
|
|
"~/.emacs.d/mspyls/Microsoft.Python.LanguageServer") |
|
|
|
|
|
|
|
|
"~/.config/emacs/mspyls/Microsoft.Python.LanguageServer") |
|
|
:custom (lsp-python-executable-cmd "python3"))) |
|
|
:custom (lsp-python-executable-cmd "python3"))) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|