Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jbyuki/ntangle-lsp.nvim
Integration with LSP in ntangle.nvim
https://github.com/jbyuki/ntangle-lsp.nvim
Last synced: about 1 month ago
JSON representation
Integration with LSP in ntangle.nvim
- Host: GitHub
- URL: https://github.com/jbyuki/ntangle-lsp.nvim
- Owner: jbyuki
- License: mit
- Created: 2020-12-12T10:26:16.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-06-21T21:25:51.000Z (over 3 years ago)
- Last Synced: 2024-08-03T13:06:14.604Z (4 months ago)
- Language: Lua
- Size: 151 KB
- Stars: 7
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
ntangle-lsp
===========LSP + Literate Programming([ntangle](https://github.com/jbyuki/ntangle.nvim)) Possible?
**Note:** This is still in experimental stage. It's meant to test the feasability of such plugin.
Install
-------Install using a plugin manager such as [vim-plug](https://github.com/junegunn/vim-plug).
```lua
Plug 'jbyuki/ntangle-ts.nvim' -- provides incremental tangling
Plug 'neovim/nvim-lspconfig' -- provides lsp server configsPlug 'jbyuki/ntangle-lsp.nvim'
```Config
------```lua
lua << EOF
require"ntangle-lsp".setup {
mappings = {
["K"] = require"ntangle-lsp".hover,
["gd"] = require"ntangle-lsp".definition,
},
}
EOF
```Architecture
------------See [ARCHITECTURE.md](ARCHITECTURE.md).