From 74330422a0e9ca0bb7592d041e42dcfa931bc417 Mon Sep 17 00:00:00 2001 From: Roger Gonzalez Date: Sun, 12 May 2024 20:05:35 -0300 Subject: Added Lazer and improved Python config --- .config/doom/custom.el | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .config/doom/custom.el (limited to '.config/doom/custom.el') diff --git a/.config/doom/custom.el b/.config/doom/custom.el new file mode 100644 index 00000000..a31fff73 --- /dev/null +++ b/.config/doom/custom.el @@ -0,0 +1,25 @@ +(custom-set-variables + ;; custom-set-variables was added by Custom. + ;; If you edit it by hand, you could mess it up, so be careful. + ;; Your init file should contain only one such instance. + ;; If there is more than one, they won't work right. + '(magit-todos-insert-after '(bottom) nil nil "Changed by setter of obsolete option `magit-todos-insert-at'") + '(safe-local-variable-values + '((poetry-tracking-strategy . "projectile") + (poetry-tracking-mode quote projectile) + (poetry-tracking-strategy quote projectile) + (projectile-project-compilation-cmd . "npm run python:lint") + (projectile-project-run-cmd . "npm start") + (projectile-project-test-cmd . "npm run python:unit") + (lsp-pylsp-plugins-pydocstyle-enabled) + (projectile-project-run-cmd . "make up") + (python-pytest-executable . "docker-compose run --rm -e CI=True app python -m pytest") + (projectile-project-test-cmd . "make test") + (lsp-pylsp-plugins-flake8-enabled)))) +(custom-set-faces + ;; custom-set-faces was added by Custom. + ;; If you edit it by hand, you could mess it up, so be careful. + ;; Your init file should contain only one such instance. + ;; If there is more than one, they won't work right. + '(font-lock-comment-face ((t (:slant italic)))) + '(font-lock-keyword-face ((t (:slant italic))))) -- cgit v1.2.3