back to home
vimping
~VIM simPING~
Always under construction!
Last edited: 15-12-2024.
A page dedicated to vim.
This is a collection of vim related blog post and resources around the internet.
I only listed what I have read so I can give a short review.
Mine
Projects
-
fsticky
Simple vim9 plugin to stick a yanked text into popup window. The popup is persistent across tabs.
My primary use case is to stick current task with its steps so I don't have to repeatedly navigate to that line.
-
fsay
Simple vim9 plugin for text to speech.
This is a wrapper for Piper,
a local neural text to speech system.
Others'
Post
Blog
Online Book
- Vim reference guide
Intended for beginner to intermediate. It is more like cheatsheets.
Most features are presented with examples.
- Learn Vimscript the Hard Way
Contains 56 short chapters each has exercises. Explains the vimscript programming language, creating plugin,
syntax highlighting, folding, and writing plugin documentation.
Book
-
The VimL Primer. Edit Like a Pro with Vim Plugins and Scripts.
A short project-based book (78 pages). Assumes familiarity with basic of vim.
By the end we will have a functional plugin for music playlist.
It can display playlist, play a track under cursor, pause, and play random track.
Also explain how to create syntax highlighting.