koddo
koddo
@lostman, this solved the issue for me: ``` (setq org-babel-python-command "/Users/alex/.python_venv/default380/bin/python") ``` Update: Sorry, forgot to include the following: ``` $ pip install ipykernel $ python -m ipykernel install --user...
I modified the `avy-tree` function so it behaves the way I like. As you can see, the `j`, `k`, `l`, and `f`, `d`, `s`, `a`, they go first in the...
`avy-jump` now has a `:pred` keyword parameter, so we can write an advice that amends a passed predicate and filters out current point. ``` (defun avy-jump-advice (orig-func &rest args) (let*...
Hello, Magnus. I think it wouldn't be hard, but I'm super busy, I don't have time for this, I'm sorry. Please try it yourself. The first thing I'd check is...
Probably after configuring properties of a theme, it should be re-enabled with `enable-theme`. An example: ``` (use-package base16-theme :after org :config (deftheme ym-base16-theme) (progn (setq ym-base16-colors (list :base00 "white" ;...
Do you mean starting nrepl server outside of emacs? I believe you can start it using `clj -A:cider-cljs` after configuring the alias as described in the link below, and then...
To me it's ok to split the huge resulting binary paperkey of rsa4096 into multiple pieces.
As far as I understand, it's just a regular way to initialize the `straight` package manager, it can be found in its documentation. You can either use the `straight-p` option...
I think, `run-with-idle-timer` would ignore a heading a user is working on. E.g., I enter the body of a heading, then type some text, and leave immediately. The idle timer...
Hm. You're right, and I didn't think about the performance. The code I pasted here is working for me though, I haven't noticed any issues so far, there are no...