Text Editor
Vim is my favourite text editor (I use Neovim). It has changed completely how I interact with text. Any editor that forces you to use a mouse is wasting your time.
Think of using Vim commands as composing sentences. Take a "verb"' d
(delete) + a "subject" w
(word) and a whole word is deleted. It's easier than pressing ctrl + shift + right arrow + delete
in a normal editor.
Vim spoiled me to the point that I use vim-like movement to browse the web (vimium).
My .vimrc file and my Vim plugins.
Links
Vim Novice Videos by Derek Wyatt.
Vimcasts learn essential vim skills by Drew Neil.
TJ DeVries YouTube channel by a core contributor to Neovim and the author of the excellent telescope.nvim plugin.
ThePrimeagen - VIMtertainer extraordinaire.
Vim anti-patterns - what not to do in vim.
vim_talk_notes write code faster: expert-level vim by Ben Orenstein
Let Vim do the typing and talk by _**_George Brocklehurst
VimGolf pick a challenge, fire up Vim and share the result.
Examples of
.vimrc
files: Chris Hunt and Gary Bernhardt.init.vim
andinit.lua
configs I take inspiration from: ThePrimeagen, TJ DeVries
Other editors I use
VSCodium - a community-driven, freely-licensed binary distribution of Microsoft’s editor VSCode. Second best choice for me after Neovim.
Last updated