Compare commits

..

No commits in common. "c153b9f9a9e085c6581428b0aec00730580dd629" and "7ddd20bf72a5ede75c8b66bab5c52c38571f3a87" have entirely different histories.

6 changed files with 13 additions and 53 deletions

View File

@ -203,7 +203,6 @@
:tags '(lola backend)
:command "python"
:args '("bin/cmdline.py" "www")
:env '(("PORT" "7450"))
:cwd "~/lola/secrets"
:truncate-output t
:stop-signal 'int
@ -264,7 +263,7 @@
:name "priceline-service"
:tags '(lola backend)
:command "~/lola/python_services/priceline/bin/start.sh"
:args '("web-dev")
:args '("web")
:cwd "~/lola/python_services"
:stop-signal 'int
:init-async (python-service-setup "~/lola/python_services/.venv"
@ -276,7 +275,7 @@
:tags '(lola backend)
:command "bash"
:args '("-c"
"priceline_cars/bin/start.sh web-dev >> ~/lola/logs/priceline-cars.log 2>&1")
"priceline_cars/bin/start.sh web >> ~/lola/logs/priceline-cars.log 2>&1")
:cwd "~/lola/python_services"
:inhibit-process-filter t
:file "~/lola/logs/priceline-cars.log"
@ -289,7 +288,7 @@
:name "threev-service"
:tags '(lola backend)
:command "~/lola/python_services/threev/bin/start.sh"
:args '("web-dev")
:args '("web")
:cwd "~/lola/python_services"
:stop-signal 'int
:init-async (python-service-setup "~/lola/python_services/.venv"
@ -300,7 +299,7 @@
:name "amd-flight-service"
:tags '(lola backend)
:command "~/lola/python_services/amd_flight/bin/start.sh"
:args '("web-dev")
:args '("web")
:cwd "~/lola/python_services"
:stop-signal 'int
:init-async (python-service-setup "~/lola/python_services/.venv"
@ -312,7 +311,7 @@
:tags '(lola backend)
:command "bash"
:args '("-c"
"ean_hotels/bin/start.sh web-dev >> ~/lola/logs/ean-hotels.log 2>&1")
"ean_hotels/bin/start.sh web >> ~/lola/logs/ean-hotels.log 2>&1")
:cwd "~/lola/python_services"
:inhibit-process-filter t
:file "~/lola/logs/ean-hotels.log"

View File

@ -29,8 +29,7 @@
:predicate flycheck-buffer-saved-p
:working-directory (lambda (checker)
(or (projectile-compilation-dir)
default-directory)))
(add-to-list 'flycheck-disabled-checkers 'python-flake8))
default-directory))))
;; pyvenv to track virtual environments
(use-package pyvenv

View File

@ -26,13 +26,4 @@
(delete-dups (font-family-list)))))
(set-frame-font font))
(defun text-scale-reset ()
(interactive)
(text-scale-increase 0))
(general-def
"C-c +" #'text-scale-increase
"C-c -" #'text-scale-decrease
"C-c 0" #'text-scale-reset)
(provide 'init-ui)

View File

@ -1,17 +0,0 @@
;; -*- lexical-binding: t; -*-
(use-package wallabag
:straight (:host github :repo "chenyanming/wallabag.el" :files ("*.el" "emojis.alist"))
:commands (wallabag
wallabag-find
wallabag-full-update
wallabag-request-token
wallabag-add-entry
wallabag-insert-entry)
:config
(setq wallabag-host "https://wallabag.jeremydormitzer.com"
wallabag-username "jdormit"
wallabag-password (password-store-get "wallabag.jeremydormitzer.com")
wallabag-clientid (password-store-get "wallabag-client-id")
wallabag-secret (password-store-get "wallabag-client-secret")))
(provide 'init-wallabag)

View File

@ -4,17 +4,6 @@
:straight (:type built-in)
:defer t
:config
(defun xml-pretty-print ()
(interactive)
(let ((start (if (region-active-p) (region-beginning) (point-min)))
(end (if (region-active-p) (region-end) (point-max))))
(cond
((executable-find "tidy")
(shell-command-on-region start end "tidy -wrap 88 -q -i -xml" nil t))
((executable-find "xmllint")
(shell-command-on-region start end "xmllint --format -" nil t))
(t (sgml-pretty-print start end)))))
(general-def nxml-mode-map "C-M-\\" #'xml-pretty-print)
(add-to-list 'hs-special-modes-alist
'(nxml-mode
"<!--\\|<[^/>]*[^/]>" ;; regexp for start block

View File

@ -105,7 +105,6 @@
(require 'init-homebrew)
(require 'init-elfeed)
(require 'init-1pass)
(require 'init-wallabag)
(require 'init-lola)
(when (file-exists-p custom-file)