nvim: Disable Python3 provider
vimtex seems to complain compiler callbacks won't work without setting the vimtex compiler program name which is to be neovim-remote. However, the reason for requiring neovim-remote is mentioned as neovim not providing the --servername option which seems to be atleast not true anymore. So remove that and disable the Python3 provider so that we do not depend on any external providers going forward. Signed-off-by: Sanchayan Maity <maitysanchayan@gmail.com>
This commit is contained in:
parent
18de6cf24d
commit
10ca6c009b
1 changed files with 1 additions and 4 deletions
|
@ -64,8 +64,6 @@ Plug 'prabirshrestha/asyncomplete.vim'
|
|||
Plug 'prabirshrestha/asyncomplete-buffer.vim'
|
||||
Plug 'prabirshrestha/asyncomplete-file.vim'
|
||||
Plug 'prabirshrestha/asyncomplete-tags.vim'
|
||||
" For Python
|
||||
Plug 'numirias/semshi', { 'do': ':UpdateRemotePlugins' }
|
||||
" Autocomplete for Rust
|
||||
Plug 'cespare/vim-toml', { 'for': 'rust' }
|
||||
Plug 'rust-lang/rust.vim', { 'for': 'rust' }
|
||||
|
@ -643,8 +641,6 @@ let g:neomake_c_gcc_maker = {
|
|||
|
||||
" Automatically detect style file and apply style to formatting
|
||||
let g:clang_format#detect_style_file = 1
|
||||
" Required for vimtex
|
||||
let g:vimtex_compiler_progname = 'nvr'
|
||||
" Fix tab behaviour while switching through completion options
|
||||
let g:SuperTabDefaultCompletionType = "<c-n>"
|
||||
" For workspace
|
||||
|
@ -711,6 +707,7 @@ let g:indentLine_setColors = 0
|
|||
|
||||
" Disable providers we do not give a shit about
|
||||
let g:loaded_python_provider = 0
|
||||
let g:loaded_python3_provider = 0
|
||||
let g:loaded_ruby_provider = 0
|
||||
let g:loaded_perl_provider = 0
|
||||
let g:loaded_node_provider = 0
|
||||
|
|
Loading…
Reference in a new issue