From 56dd47680801fe9b6b3ad50bec17d94f4b834e38 Mon Sep 17 00:00:00 2001 From: Christopher James Hayward Date: Thu, 18 Mar 2021 23:13:49 -0400 Subject: [PATCH] Cleanup --- modules/development.org | 27 +++++++++------------------ modules/terminal.org | 2 +- 2 files changed, 10 insertions(+), 19 deletions(-) diff --git a/modules/development.org b/modules/development.org index 8cd0f20..d2ca918 100644 --- a/modules/development.org +++ b/modules/development.org @@ -50,6 +50,8 @@ Include the ~bin~ subdirectory of the =$GOPATH= in the =$PATH= variable, adding Include the *go-mode*[fn:5] package for integration with *lsp-mode* from the [[file:projects.org][Projects]] module. ++ Manually set the ~gopls~ application path + #+begin_src emacs-lisp (use-package go-mode :hook (go-mode . lsp) @@ -102,6 +104,7 @@ Support for YAML files. Add support for the *C/C++* family of languages via the *CCLS*[fn:7] language server. ++ Install requirements + Integrate with *LSP*[fn:2] + Integrate with *DAP*[fn:1] + Load babel language modules @@ -111,6 +114,7 @@ Add support for the *C/C++* family of languages via the *CCLS*[fn:7] language se #+begin_src emacs-lisp (use-package ccls + :init (dotfiles/install "ccls") :hook ((c-mode c++-mode objc-mode cuda-mode) . (lambda () (require 'ccls) @@ -120,14 +124,6 @@ Add support for the *C/C++* family of languages via the *CCLS*[fn:7] language se (org-babel-do-load-languages 'org-babel-load-languages '((C . t)))) #+end_src -** Installing requirements - -Some required packages, here's how to install on *Debian/Ubuntu*: - -#+begin_src shell -sudo apt install ccls -#+end_src - * Python Adds support for *Python* and *Python 3*[fn:8] with *DAP*[fn:1] and *LSP*[fn:2] integration. The built in Emacs mode *python-mode*[fn:9] implements the behaviour. @@ -159,28 +155,23 @@ pip3 install --user "python-language-server[all]" Download and install *PlantUML*[fn:11], a text-based markup language for creating UML diagrams. You can read my notes about the tool [[file:../docs/notes/plantuml.org.gpg][PlantUML]] here. Support added through the *plantuml-mode*[fn:12] package. ++ Install requirements + Load the babel module for *PlantUML*[fn:11] + Create a structure template with ~