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
- Host: GitHub
- URL: https://github.com/kndndrj/projector-idea
- Owner: kndndrj
- License: gpl-3.0
- Created: 2022-10-21T16:45:17.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2024-01-04T09:41:13.000Z (over 1 year ago)
- Last Synced: 2025-01-08T03:09:55.608Z (9 months ago)
- Language: Lua
- Size: 25.4 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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,
}
```