Vim 9.0
21–30 of 272 posts
Re: Vim 9.0
#22I'm curious: - How deep a rabbit hole do most people go down when setting up their vim / neovim environment? Apart from setting up a preferred color and language specific tab spacing and highlighting, I don't need more, but I've seen some pretty fancy setups. Out of the different plugins, which would you never operate without?
The editing plugins I use most heavily are probably vim-surround and vim-commentary. My development would definitely slow down without them.
Re: Vim 9.0
#23Earlier quoted context omitted.
No line numbers? @_@
Nope. Back in the day that would greatly interfere with copy/paste. One way or another, it's so easy to see what line number you're on and/or jump to a specific line.
Re: Vim 9.0
#24Re: Vim 9.0
#25Re: Vim 9.0
#26Re: Vim 9.0
#27I'm curious: - How deep a rabbit hole do most people go down when setting up their vim / neovim environment? Apart from setting up a preferred color and language specific tab spacing and highlighting, I don't need more, but I've seen some pretty fancy setups. Out of the different plugins, which would you never operate without?
Since this editor (and Emacs) are SO extensible, it's hard to find two long-time users with similar configs.
Re: Vim 9.0
#28Does anyone have a good from-scratch setup guide for Neovim?
Re: Vim 9.0
#29I'm curious: - How deep a rabbit hole do most people go down when setting up their vim / neovim environment? Apart from setting up a preferred color and language specific tab spacing and highlighting, I don't need more, but I've seen some pretty fancy setups. Out of the different plugins, which would you never operate without?
I've been using vi/vim on a near daily basis for 34 years now and this is the only thing I put in ~/.vimrc: set tabstop=4 set expandtab set shiftwidth=4 " or 2 or whatever set shiftround syntax on EDIT: Just for some fun archeology, I google searched on the 3rd line, 'set shiftwidth=4 " or 2 or whatever' because I very dimly recall copying most of my standard set (minus the syntax on bit) from someone else a long lon…
Re: Vim 9.0
#30Earlier quoted context omitted.
No line numbers? @_@
Nope. Back in the day that would greatly interfere with copy/paste. One way or another, it's so easy to see what line number you're on and/or jump to a specific line.
:set nu!
Just toggle them off when you copy/paste, then on again. Takes a fraction of a second.