Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ethanuppal/bril.nvim
Bril for Neovim | LSP + simple wrapper around sampsyo/bril/bril-vim
https://github.com/ethanuppal/bril.nvim
bril lsp neovim plugin syntax-highlighting
Last synced: 1 day ago
JSON representation
Bril for Neovim | LSP + simple wrapper around sampsyo/bril/bril-vim
- Host: GitHub
- URL: https://github.com/ethanuppal/bril.nvim
- Owner: ethanuppal
- Created: 2025-01-30T16:03:44.000Z (15 days ago)
- Default Branch: main
- Last Pushed: 2025-02-12T08:48:16.000Z (3 days ago)
- Last Synced: 2025-02-12T09:49:50.736Z (3 days ago)
- Topics: bril, lsp, neovim, plugin, syntax-highlighting
- Language: Lua
- Homepage:
- Size: 2.93 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# bril.nvim
This plugin is a simple wrapper around [`sampsyo/bril/bril-vim`](https://github.com/sampsyo/bril/tree/main/bril-vim).
There's nothing fancy here.## 📦 Install
> [!NOTE]
> This section assumes a Unix-like operating system.First, install the Bril LSP:
```sh
cargo install --locked --git https://gitlab.com/ethanuppal/cs6120 bril-lsp
```Be sure to update the LSP regularly as I make changes.
Then, install the plugin with [lazy.nvim](https://github.com/folke/lazy.nvim):
```lua
{ "ethanuppal/bril.nvim" }
```You can supply configuration with the optional `opts` field, as in
```lua
{
"ethanuppal/bril.nvim",
opts = {
lsp_command = "custom/path/to/bril/langauge/server",
}
}
```Please do not add `lazy = true`; the plugin is already lazy.