Nice! Do you know if the images plugin works with tmux? I use images.nvim for that currently.
I am going down the rabbit hole of going through all the snacks.nvim plugins...
medium.com/@ascourter/i...
Working on another video on snacks.nvim.
Seems like it might be a couple videos...
Let's see how this new keyboard performs
New video on the Vim Global Command!
youtu.be/1M-XDGc20ns
Want to repeat the same command many times in Neovim?
If you wanted to prepend - to the front of each line, you can use I-
Then use visual mode, V, and select the lines using j/k.
Then use : and type in normal .
:'<,'>normal .
Recorded a video today for vim g command. I hope to have it edited and live this week!
Ghostty is launching this month!
mitchellh.com/writing/ghos...
Merry Christmas! ๐
Thank you! I definitely intend to! Hopefully I can share some over the holidays.
I love that no matter how much I learn about Neovim, there is always more to learn!
Thanks! You will definitely get there. It took me about 2.5 years to get to this point.
My first post was on March 29, 2022.
I hit 1000 followers on Medium!
Thank you to everyone who has read my content!
Appreciate the shout-out! Glad I was able to help!
Kitty Cursor trail is freakin' sweet
github.com/kovidgoyal/k...
cursor_trail 3
cursor_trail_decay 0.1 0.4
In Neovim / Vim you can quickly delete lines
:g/pattern/d - Remove lines matching pattern
:g!/pattern/d - Remove lines that do NOT match
Ran into this error the other day upgrading to Rails 7.2. Hopefully this helps someone save some time in debugging!
medium.com/@ascourter/r...
Anyone else at RubyConf today?
Ran into this issue today with a tmux color plugin.
Needed to update bash to get it fixed.
github.com/fabioluciano...
tmux video recorded. Now to edit! ๐ฅ
New article on getting started with tmux
medium.com/@ascourter/g...
In Neovim, use * to search for the word under the cursor. Press n to jump to the next occurrence and N for the previous.