dotemacs

My Emacs configuration
git clone git://git.entf.net/dotemacs
Log | Files | Refs | LICENSE

commit 7c610d32e2af4d8e7c65cff3860586130b55cffa
parent 2c103c15588e8c2fedb35f0897c15315347b9f8d
Author: Lukas Henkel <lh@entf.net>
Date:   Tue, 31 Aug 2021 19:48:38 +0200

Disable popper end project-x for now, causes LSP to break

Also fix some indentation

Diffstat:
Mconfig.org | 12++++++------
1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/config.org b/config.org @@ -227,13 +227,13 @@ Consult improves on a lot of default Emacs functionality and adds a lot more. I (when-let (project (project-current)) (car (project-roots project)))))) #+end_src -** project-x +** COMMENT project-x Improves on the inbuilt project.el, also needed by popper. #+begin_src emacs-lisp (use-package project-x :straight (project-x :type git :host github :repo "karthink/project-x")) #+end_src -** popper +** COMMENT popper Popper turns chosen buffers into popups, which can be shown or hidden quickly. #+begin_src emacs-lisp (use-package popper @@ -348,8 +348,8 @@ Using the language server protocol, we can support a lot of different programmin :init (setq lsp-keymap-prefix "C-c l") :hook ((go-mode . lsp-mode) - (csharp-mode . lsp-mode) - (lsp-mode . lsp-enable-which-key-integration)) + (csharp-mode . lsp-mode) + (lsp-mode . lsp-enable-which-key-integration)) :commands lsp) (use-package lsp-ui @@ -358,8 +358,8 @@ Using the language server protocol, we can support a lot of different programmin :init (setq lsp-ui-sideline-show-diagnostics t) :bind (:map lsp-mode-map - ("M-ß" . lsp-ui-peek-find-definitions) - ("M-?" . lsp-ui-peek-find-references))) + ("M-ß" . lsp-ui-peek-find-definitions) + ("M-?" . lsp-ui-peek-find-references))) (use-package dap-mode :straight t)