Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/adelarsq/snake_cursor.nvim

Neovim plugin that turns your cursor into a snake 🐍💙💛🤍💚
https://github.com/adelarsq/snake_cursor.nvim

fun lua neovim plugin

Last synced: 2 days ago
JSON representation

Neovim plugin that turns your cursor into a snake 🐍💙💛🤍💚

Awesome Lists containing this project

README

        

# Snake Cursor for Neovim

Neovim plugin that turns your cursor into a snake while moving the cursor on the text (using hjkl or others):

![image](https://github.com/adelarsq/snake_cursor.nvim/assets/430272/c99d6ff7-d3bd-41b1-9de5-6f0d9083ec67)

## Installing

### Plug

```
Plug 'adelarsq/snake_cursor.nvim'
```

### Lazy

```lua
{
'adelarsq/snake_cursor.nvim',
event = 'VeryLazy',
config = function()
require("snake_cursor").setup()
end
},
```