#neovim

Study

My neovim config: https://github.com/rafadc/dotfiles/tree/master/config/nvim

Docs

https://neovim.io/doc/user/lua.html#vim.api

https://github.com/VonHeikemen/lsp-zero.nvim

https://www.reddit.com/r/neovim/s/D7QtcyHKh5

Commands to practice

argdo: You have to set first with args the files you want to touch and with argdo you just execute the command in those files. For example you can:

:argdo **/*.*
:argv s/homepage/miniflux/g

to replace all appeareances of homepage by miniflux in all files

TODO