Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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 🐍💙💛🤍💚
- Host: GitHub
- URL: https://github.com/adelarsq/snake_cursor.nvim
- Owner: adelarsq
- License: mit
- Created: 2024-04-24T01:15:00.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-05-01T21:02:00.000Z (7 months ago)
- Last Synced: 2024-05-02T16:16:06.163Z (7 months ago)
- Topics: fun, lua, neovim, plugin
- Language: Lua
- Homepage:
- Size: 9.77 KB
- Stars: 10
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
- License: LICENSE
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
},
```