> I use Lisp because it offers me computing freedom unlike anything else. I don't care about lambda calculus or programming theory.
26% of my system packages are Lisp (mostly Emacs Lisp), and I wish it was 100%.
I suppose you use #Guix OS with Shepherd? That is a good way to use Guile Scheme for a large portion of your operating system, in particular the package management and the init system. Then use Emacs on top of that and you have most of your day-to-day computing tasks covered by Lisp. You could probably also use the Nyxt browser, although the core of it is still WebKit, which is not Lisp.
> what features of Lisp make it more liberating for you personally than some other more popular high-level language such as Python or JavaScript?
Lisp offers “Freedom 1” (“the freedom to study how the program works, and change it”) in its fullest. Any function definition is a single M-. away to study, and it can be changed at any time, instantly. OODA loop is as short as it gets. I'm sure Emacs users read and change the code of the program they are running more than any other social group in the world.
Patch the object system, alter the thing that defines local functions, extend the syntax that defines code transformers — all with immediate effects, of course — all that would probably beyond my hopes, had I settled with more popular languages. (And I had to do all the things I mentioned, due to bugs or missing features.) How about something less fancy, such as redefining a class? Looks like Python has problems even with that. This is extremely limiting.
> I suppose you use #Guix OS with Shepherd?
No; Gentoo.
> Then […] have most of your day-to-day computing tasks covered by Lisp.
Smartphone use aside, that's the case already. I have to run some daemons written in C, and the system depends somewhat heavily on Python and Perl but that's it. I just never leave Emacs, except when it crashes.
> what features of Lisp make it more liberating for you personally than some other more popular high-level language such as Python or JavaScript?