Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/julienvincent/nvim-paredit-fennel
A fennel language extension for nvim-paredit
https://github.com/julienvincent/nvim-paredit-fennel
fennel lua neovim nvim-paredit paredit vim
Last synced: 6 days ago
JSON representation
A fennel language extension for nvim-paredit
- Host: GitHub
- URL: https://github.com/julienvincent/nvim-paredit-fennel
- Owner: julienvincent
- License: gpl-3.0
- Created: 2023-09-10T16:39:25.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2024-03-16T20:27:10.000Z (8 months ago)
- Last Synced: 2024-08-02T18:37:00.464Z (3 months ago)
- Topics: fennel, lua, neovim, nvim-paredit, paredit, vim
- Language: Lua
- Homepage:
- Size: 17.6 KB
- Stars: 8
- Watchers: 3
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- my-neovim-pluginlist - julienvincent/nvim-paredit-fennel - paredit-fennel) ![](https://img.shields.io/github/last-commit/julienvincent/nvim-paredit-fennel) ![](https://img.shields.io/github/commit-activity/y/julienvincent/nvim-paredit-fennel) (Editing support / Parenthetical edit)
README
## nvim-paredit-fennel
> [!WARNING]
>
> This is now deprecated as of [email protected]
>
> The language-extensions API has been removed and fennel support has now been directly added to nvim-paredit.**EXPERIMENTAL**
Provides a language extension implementation to [nvim-paredit](https://github.com/julienvincent/nvim-paredit) for the Fennel programming language
## Installation
### Using [folke/lazy.vim](https://github.com/folke/lazy.nvim)
```lua
{
"julienvincent/nvim-paredit-fennel",
dependencies = { "julienvincent/nvim-paredit" },
ft = { "fennel" },
config = function()
require("nvim-paredit-fennel").setup()
end
}
```