Skip to content

Latest commit

 

History

History
49 lines (34 loc) · 1.75 KB

README.org

File metadata and controls

49 lines (34 loc) · 1.75 KB

Spacemacs layer for intellij-lsp-server

Table of Contents

Description

This layer adds support for editing Java and Kotlin using IntelliJ IDEA with intellij-lsp-server as a backend.

Install

First, follow the install steps at intellij-lsp-server to install the required plugin in your copy of IDEA. Then, clone the layer into your ~/.emacs.d/private directory:

git clone git@github.com:Ruin0x11/lsp-intellij-spacemacs.git ~/.emacs.d/private/lsp-intellij

How you enable this layer depends on your Spacemacs version, which you can find with M-: spacemacs-version.

0.200.*

Add the following layers to your dotspacemacs-configuration-layers in ~/.spacemacs:

auto-completion syntax-checking lsp-intellij

With no other layers enabled, this will look like:

(setq-default dotspacemacs-configuration-layers '(auto-completion syntax-checking lsp-intellij))

0.300.*

Add the following layers to your dotspacemacs-configuration-layers in ~/.spacemacs:

auto-completion syntax-checking lsp lsp-intellij

With no other layers enabled, this will look like:

(setq-default dotspacemacs-configuration-layers '(auto-completion syntax-checking lsp lsp-intellij))

Please see the lsp-intellij repo for more information.