Skip to content
Snippets Groups Projects
  • dpsutton's avatar
    3edc7d0b
    Add lsp (#15181) · 3edc7d0b
    dpsutton authored
    * Add lsp and config
    
    ```emacs-lisp
      (use-package lsp-mode
        :ensure t
        :hook ((clojure-mode . lsp)
               (clojurec-mode . lsp)
               (clojurescript-mode . lsp))
        :config
        (setq lsp-enable-indentation nil)
        (setq lsp-enable-file-watchers nil) ;; annoying and i can't specify paths
        ;; add paths to your local installation of project mgmt tools, like lein
        (dolist (m '(clojure-mode
                     clojurec-mode
                     clojurescript-mode
                     clojurex-mode))
           (add-to-list 'lsp-language-id-configuration `(,m . "clojure"))))
    ```
    
    * Add socket repl support to project.clj (also include reveal)
    
    * Configure lsp so that enterprise is on the classpath
    Add lsp (#15181)
    dpsutton authored
    * Add lsp and config
    
    ```emacs-lisp
      (use-package lsp-mode
        :ensure t
        :hook ((clojure-mode . lsp)
               (clojurec-mode . lsp)
               (clojurescript-mode . lsp))
        :config
        (setq lsp-enable-indentation nil)
        (setq lsp-enable-file-watchers nil) ;; annoying and i can't specify paths
        ;; add paths to your local installation of project mgmt tools, like lein
        (dolist (m '(clojure-mode
                     clojurec-mode
                     clojurescript-mode
                     clojurex-mode))
           (add-to-list 'lsp-language-id-configuration `(,m . "clojure"))))
    ```
    
    * Add socket repl support to project.clj (also include reveal)
    
    * Configure lsp so that enterprise is on the classpath
Code owners
Assign users and groups as approvers for specific file changes. Learn more.