An open API service indexing awesome lists of open source software.

https://github.com/kndndrj/projector-idea

IntelliJ loader for nvim-projector
https://github.com/kndndrj/projector-idea

Last synced: 7 months ago
JSON representation

IntelliJ loader for nvim-projector

Awesome Lists containing this project

README

          

# Neovim Projector IDEA Extension

Extension for [nvim-projector](https://github.com/kndndrj/nvim-projector) that
adds additional IDEA loader.

NOTE: Currently there is only support for goland.

## Installation

Install it as any other plugin. Be aware that
[`xml2lua`](https://github.com/manoelcampos/xml2lua) is needed as luarocks
dependency.

Example installation using packer.nvim:

```lua
use {
"kndndrj/nvim-projector",
requires = {
"MunifTanjim/nui.nvim",
"kndndrj/projector-idea"
},
rocks = {
"xml2lua",
},
config = function()
require("projector").setup {
loaders = {
require("projector_idea").Loader:new(),
-- ... your other loaders
},
-- ... the rest of your config
}
end,
}
```