``vimrc set hlsearch " highlight all search results set ignorecase " do case insensitive search set incsearch " show incremental search results as you type set number " display line number set noswapfile " disable swap file
equivalent to:
```vimrc
set hls ic is nu noswf
Use the easy align plugin, highlight the table, then :'<,'>:EasyAlign<CR>
then, \*|<CR>
Macro over visual selection for macro recorded in e.g. w
register
:'<,'>normal @w
:echo g:variable_name