From ea0e9caa6f1a34a1257b86ffe0d3ab3627d1d8e4 Mon Sep 17 00:00:00 2001 From: Joel Grunbaum <joelgrun@gmail.com> Date: Thu, 06 Jan 2022 00:06:55 +0000 Subject: [PATCH] Added python lsp config --- config.org | 23 +++++++++++++++++------ 1 files changed, 17 insertions(+), 6 deletions(-) diff --git a/config.org b/config.org index 7c60948..cddd15f 100644 --- a/config.org +++ b/config.org @@ -796,7 +796,8 @@ rust-mode sh-mode ;; verilog-mode - go-mode) . lsp)) + go-mode + python-mode) . lsp)) :init (setq lsp-keymap-prefix "C-c l") :commands lsp @@ -901,7 +902,7 @@ (add-hook 'magit-process-prompt-functions #'magit-process-general-yn-prompt-hook) #+END_SRC -*** Gerrit integration +*** COMMENT Gerrit integration Gerrit takes ~origin:refs/for/master~ as a destination. Enable magit to work with its oddities. #+BEGIN_SRC emacs-lisp @@ -1030,9 +1031,9 @@ "BreakBeforeBraces: Linux," "AllowShortIfStatementsOnASingleLine: false," "IndentCaseLabels: false}")))) - - (use-package clang-format - :hook (c-mode-common . (set-clang-format-style))) + (add-hook 'c-mode-common-hook 'set-clang-format-style) + + (use-package clang-format) ;; (defun clang-format-on-save () ;; (add-hook 'before-save-hook 'clang-format-buffer nil t)) @@ -1275,6 +1276,15 @@ #+BEGIN_SRC emacs-lisp (use-package company-go) #+END_SRC +*** Python +**** COMMENT LSP server +Use jedi, idk why. +#+BEGIN_SRC emacs-lisp + (use-package lsp-jedi + :config + (add-to-list 'lsp-disabled-clients 'pyls) + (add-to-list 'lsp-enabled-clients 'jedi)) +#+END_SRC * Org mode ** Up to date org Pull the latest org mode from the repository, rather than the org which comes with emacs. @@ -1363,7 +1373,8 @@ Call pandoc on org buffer from org export. Need to add ~#+OPTIONS: H:99~ to enable large level header exports. #+BEGIN_SRC emacs-lisp - (use-package ox-pandoc) + (when (executable-find "pandoc") + (use-package ox-pandoc)) #+END_SRC *** COMMENT Dokuwiki Wiki -- Gitblit v1.9.3