From f1ee5b1affae73ce5c3929b27d4a04fdd7060609 Mon Sep 17 00:00:00 2001 From: Thomas Forgione Date: Wed, 7 Dec 2022 12:45:51 +0100 Subject: [PATCH] Restore old init.vim --- init.vim | 76 ++++++++++++++++++++++---------------------------------- 1 file changed, 30 insertions(+), 46 deletions(-) diff --git a/init.vim b/init.vim index 07a3a21..1382722 100644 --- a/init.vim +++ b/init.vim @@ -3,24 +3,35 @@ set nocompatible " PLUGNIS ###########################################################{{{ call plug#begin() - -" Conquer of Completion -Plug 'neoclide/coc.nvim', {'branch': 'release'} +if has('nvim') + Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' } +else + Plug 'Shougo/deoplete.nvim' + Plug 'roxma/nvim-yarp' + Plug 'roxma/vim-hug-neovim-rpc' +endif " General plugins Plug 'vim-airline/vim-airline' Plug 'vim-airline/vim-airline-themes' Plug 'https://gitea.tforgione.fr/tforgione/peach.git' Plug 'scrooloose/nerdtree' +Plug 'w0rp/ale' Plug 'tpope/vim-abolish' " Language specific plugins +" C++ +Plug 'Shougo/deoplete-clangx' + " Rust Plug 'rust-lang/rust.vim' +Plug 'racer-rust/vim-racer' +Plug 'sebastianmarkow/deoplete-rust' " Elm Plug 'ElmCast/elm-vim' +Plug 'antew/vim-elm-language-server' " Toml Plug 'cespare/vim-toml' @@ -45,7 +56,6 @@ set expandtab set tabstop=4 set shiftwidth=4 set autoindent -set tw=120 " }}} " UI CONFIG #########################################################{{{ @@ -147,49 +157,11 @@ let g:markdown_composer_browser = 'firefox' let g:instant_markdown_autostart = 0 " }}} -" COC CONFIG ########################################################{{{ +" CODE COMPLETION ###################################################{{{ -" Use `[g` and `]g` to navigate diagnostics -" Use `:CocDiagnostics` to get all diagnostics of current buffer in location list. -nmap gp (coc-diagnostic-prev) -nmap gn (coc-diagnostic-next) - -" GoTo code navigation. -nmap gd (coc-definition) -nmap gy (coc-type-definition) -nmap gi (coc-implementation) -nmap gr (coc-references) - -" Add `:Format` command to format current buffer. -command! -nargs=0 Format :call CocAction('format') - -" Use K to show documentation in preview window. -nnoremap K :call show_documentation() - - -function! s:show_documentation() - if (index(['vim','help'], &filetype) >= 0) - execute 'h '.expand('') - elseif (coc#rpc#ready()) - call CocActionAsync('doHover') - else - execute '!' . &keywordprg . " " . expand('') - endif -endfunction - -" Having longer updatetime (default is 4000 ms = 4 s) leads to noticeable -" delays and poor user experience. -set updatetime=300 - -" Highlight the symbol and its references when holding the cursor. -autocmd CursorHold * silent call CocActionAsync('highlight') - -" Symbol renaming. -nmap rn (coc-rename) - -" Formatting selected code. -xmap f (coc-format-selected) -nmap f (coc-format-selected) +" Use deoplete +let g:deoplete#enable_at_startup = 1 +autocmd FileType elm call deoplete#custom#buffer_option('auto_complete', v:false) " Autoclose preview autocmd CursorMovedI * if pumvisible() == 0|pclose|endif @@ -197,7 +169,19 @@ autocmd InsertLeave * if pumvisible() == 0|pclose|endif " Complete on tab inoremap pumvisible() ? "\" : "\" + " }}} " CUSTOM THINGS DEPENDING ON ENV ####################################{{{ let g:rustfmt_autosave = 1 +let g:ale_linters = {} +let g:ale_c_parse_compile_commands=1 +let g:ale_elm_ls_use_global = 1 +let g:ale_linters_ignore = { 'elm': ['make'] } +let g:ale_lint_on_text_changed = 0 +if $NVIM_DISABLE_PYTHON_LINTER == '1' + let g:ale_linters.python = [] +endif +if $NVIM_DISABLE_JAVA_LINTER == '1' + let g:ale_linters.java = [] +endif