Changeset ead573e in dotfiles
- Timestamp:
- Sep 27, 2024, 4:51:30 AM (7 weeks ago)
- Branches:
- master
- Children:
- f30e1cd
- Parents:
- 5211578
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
emacs/.emacs.d/.emacs-config.org
r5211578 read573e 570 570 (add-hook 'sml-mode-hook 'sml-mode) 571 571 #+END_SRC 572 ** Java 573 *** Eglot-java 574 For better integration with eclipse.jdt.ls 575 #+BEGIN_SRC emacs-lisp :tangle init.el 576 (unless (package-installed-p 'eglot-java) 577 (package-vc-install "https://github.com/yveszoundi/eglot-java" nil nil 'eglot-java)) 578 #+end_src 572 579 573 580 ** PHP -
guix/.dotfiles/home-configuration.scm
r5211578 read573e 33 33 "python-wrapper" 34 34 "php" 35 "openjdk" 36 "maven" 35 37 "sqls" 36 38 "go" … … 39 41 "delve" 40 42 "python-lsp-server" 43 "python-jedi" ;; Looks a bit deprecated 41 44 "ruby-solargraph" 42 45 "zig-zls" -
guix/config-desktop.scm
r5211578 read573e 34 34 (group "users") 35 35 (home-directory "/home/w96k") 36 (supplementary-groups '("wheel" "netdev" "audio" "video" "kvm" )))36 (supplementary-groups '("wheel" "netdev" "audio" "video" "kvm" "httpd"))) 37 37 %base-user-accounts)) 38 38 … … 111 111 (service php-fpm-service-type 112 112 (php-fpm-configuration 113 (display-errors #t) 113 114 (socket "/var/run/php-fpm.sock") 114 115 (socket-group "httpd")))
Note:
See TracChangeset
for help on using the changeset viewer.