You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can install V support with a vim plugin manager as usual, for example with Plug:
Plug 'ollykel/v-vim'
Reload config (or save & exit vim/neovim), then:
:PlugInstall
Options
You can add any of the following into your vim config to disable highlighting.
The following options are enabled by default:
" Disable highlight white space after "[]".letg:v_highlight_array_whitespace_error=0" Disable highlight white space around the communications operator that don't follow the standard style.letg:v_highlight_chan_whitespace_error=0" Disable highlight instances of tabs following spaces.letg:v_highlight_space_tab_error=0" Disable highlight trailing white space.letg:v_highlight_trailing_whitespace_error=0" Disable highlight function calls.letg:v_highlight_function_calls=0letg:v_highlight_fields=0
You can add any of the following to your vim config to enable aditional options.
The following options are disabled by default:
" Enable automatically formatting file via "v fmt -" before writing buffer.letg:v_autofmt_bufwritepre=1