Compare commits

...

2 Commits

Author SHA1 Message Date
f5fc9ba6d9 Emacs: dape performance 2024-09-20 08:40:29 +07:00
3948eb1ccb qtile: Unity windows 2024-09-20 08:39:40 +07:00
2 changed files with 8 additions and 0 deletions

View File

@ -2688,6 +2688,12 @@ and there's no need for a middle-man when it's already been implemented.
(define-key global-map (kbd "<f5>") #'joe/dape-toggle-breakpoint-and-rerun)
#+end_src
Apparently this helps with the performance of dape
#+begin_src emacs-lisp
(setq read-process-output-max (* 1024 1024)) ;; 1mb
#+end_src
** org-mode
*** General
#+begin_src emacs-lisp

View File

@ -372,9 +372,11 @@ floating_layout = layout.Floating(
Match(wm_class="Unity", title="UnityEditor.AnnotationWindow"),
Match(wm_class="Unity", title="Enable Android Auto-resolution?"),
Match(wm_class="Unity", title="Select Material"),
Match(wm_class="Unity", title="Select Preset"),
Match(wm_class="Unity", title="Color"),
Match(wm_class="Unity", title="Save Layout"),
Match(wm_class="Unity", title="Sirenix.OdinInspector.Editor.TypeSelectorV2"),
Match(wm_class="Unity", title=re.compile(r"^Sirenix.OdinInspector.Editor.EnumSelector.*")),
# Match(wm_class="Unity", title=re.compile(r"^Select .*")),
]
)