Guix and emacs config cleanup

This commit is contained in:
James Grogan 2025-04-29 18:03:13 +01:00
parent 189ede1949
commit 8dc066a796
6 changed files with 21 additions and 14 deletions

View file

@ -30,7 +30,7 @@
(use-package company
:after lsp-mode
:hook (lsp-mode . company-mode)
:hook (lsp-mode company)
:bind (:map company-active-map
("<tab>" . company-complete-selection))
(:map lsp-mode-map
@ -40,7 +40,7 @@
(company-idle-delay 0.0))
(use-package lsp-ui
:hook (lsp-mode . lsp-ui-mode)
:hook (lsp-mode lsp-ui)
:custom
(lsp-ui-doc-position 'bottom)
:commands lsp-ui-mode)
@ -77,7 +77,7 @@
:ensure nil
:hook (python-mode . lsp-deferred)
:custom
;; NOTE: Set these if Python 3 is called "python3" on your system!
;; Look for python3 rather than python
(python-shell-interpreter "python3")
(dap-python-executable "python3")
(dap-python-debugger 'debugpy)