Editing Tabular Data in Vim
Helpful settings for editing tabular data:
setlocal noexpandtab setlocal nowrap setlocal tabstop=16 softtabstop=16 shiftwidth=16
Noexpandtab disables expanding of inputted tabs to spaces. Adjust the number of spaces to your liking. Tabstop sets the visual appearance of tab stops (here 16 spaces).
Show tabs visually, disable cursor line …