Neovim-Lua Plugin Development Beginners Guide

preview_player
Показать описание
Presentation:

Neovim Lua boilerplate:

Neovim Lua video tutorials:

My Neovim configuration:

Terminal manager:

Download Neovim:

Follow me on:
Рекомендации по теме
Комментарии
Автор

Great video, especially appreciate the "edit, reload, test" description.

gpcureton
Автор

I had an issue with printing Hello World at 8:50, and realised that it was because the method of setting rtp at 3:45 didn't work for me. Here's the solution for anyone facing this problem:

At 3:45, after entering nvim, check that the current directory is in the rtp using the vim command ":echo &rtp". In the output you should see a dot representing the current directory.

However, this didn't work for me, so I found a solution where you instead open nvim with
nvim -c "set rtp+=."
This works because according the "man nvim", you'll notice that --cmd runs BEFORE any vimrc, so it probably gets overridden. -c runs after reading the file, so it takes precedence.

vikingthedude
Автор

I installed your .sh but the Packer commands don't work, so it's not installed can you help me?

-ygdrayko
Автор

hi, great video, and very cool your plugin terminal, i need help in something, im trying to make a screenshot plugin selecting text and i got searching how get the highlights from text but i didnt luck, is it possible ?

untalbj
Автор

Great video! Thank you for sharing with us, how do you create your slices?

JuanVqz
Автор

Isn't require_clean enough to get the newest version of the code ?

Danielo
Автор

opening neovim in tmux completely destroys my colorscheme any chane i can see your tmux config? i couldn't find it in your github

alankjohn
Автор

Hello, I would like to go deeper for the creation of plugins with lua and Vim Script, I would greatly appreciate if you would recommend some articles or videos. By the way very good video

videosjuegostutoriales