Browse Source

some cleanup for local persistent files, went to user-local

master
Marc 2 years ago
parent
commit
64d8f6a885
1 changed files with 4 additions and 2 deletions
  1. 6
      config.org

6
config.org

@ -1142,6 +1142,8 @@ TODO Unterverzeichnisse wurden noch nicht getestet
(lsp-enable-folding t) ; default, maybe evil-matchit instead for performance?
(lsp-diagnostics-modeline-scope :project)
(lsp-enable-file-watchers nil)
(lsp-session-file (concat MY--PATH_USER_LOCAL "lsp-session"))
(lsp-eslint-library-choices-file (concat MY--PATH_USER_LOCAL "lsp-eslint-choices"))
:bind (:map lsp-mode-map ("C-c C-f" . lsp-format-buffer))
:hook
(((python-mode
@ -1262,8 +1264,8 @@ Manage projects and jump quickly between its files
(("C-c p" . projectile-command-map))
;:preface
:init
(setq-default projectile-cache-file (concat MY--PATH_USER_LOCAL ".projectile-cache")
projectile-known-projects-file (concat MY--PATH_USER_LOCAL ".projectile-bookmarks"))
(setq-default projectile-cache-file (concat MY--PATH_USER_LOCAL "projectile-cache")
projectile-known-projects-file (concat MY--PATH_USER_LOCAL "projectile-bookmarks"))
:config
(projectile-mode)
; (add-hook 'projectile-after-switch-project-hook #'set-workon_home)

Loading…
Cancel
Save