diff options
| author | jdhao <jdhao@hotmail.com> | 2020-09-26 09:15:40 +0800 |
|---|---|---|
| committer | jdhao <jdhao@hotmail.com> | 2020-09-26 09:15:40 +0800 |
| commit | b65c7c6d702ba0371e917066b55a58cf14f2d1bb (patch) | |
| tree | 801a9cab3e33120ee8a7781c1ccb28522b59b269 /variables.vim | |
| parent | c248ab02d40249479ca5c0f75ae580e5f2074239 (diff) | |
change vim script style from 4-space indent to 2-space
Diffstat (limited to 'variables.vim')
| -rw-r--r-- | variables.vim | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/variables.vim b/variables.vim index 562e154..bcd0557 100644 --- a/variables.vim +++ b/variables.vim @@ -7,12 +7,12 @@ let g:loaded_python_provider=0 " faster. See https://neovim.io/doc/user/provider.html. if executable('python') if g:is_win - let g:python3_host_prog=substitute(exepath('python'), '.exe$', '', 'g') - elseif g:is_linux || g:is_mac - let g:python3_host_prog=exepath('python') - endif + let g:python3_host_prog=substitute(exepath('python'), '.exe$', '', 'g') + elseif g:is_linux || g:is_mac + let g:python3_host_prog=exepath('python') + endif else - echoerr 'Python 3 executable not found! You must install Python 3 and set its PATH correctly!' + echoerr 'Python 3 executable not found! You must install Python 3 and set its PATH correctly!' endif " Custom mapping <leader> (see `:h mapleader` for more info) |
