• Ubuntu Server 20.04 LTS 环境下搭建vim 编辑器Python IDE


    安装配置vim-plug

    安装vim-plug

    curl -fLo ~/.vim/autoload/plug.vim --create-dirs \
        https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
    
    • 1
    • 2

    配置vim-plug

    1. 在家目录下创建.vimrc配置文件
    2. .vimrc下填写配置
    vim ~/.vimrc
    
    • 1
    call plug#begin()
    Plug 'neoclide/coc.nvim'
    Plug 'asins/vimcdoc'
    Plug 'preservim/nerdtree'
    Plug 'mhinz/vim-startify'
    Plug 'luochen1990/rainbow'
     
    call plug#end()
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8

    安装coc.nvim插件

    更新vim

    sudo add-apt-repository ppa:jonathonf/vim
    
    sudo apt-get update
    
    sudo apt-get install vim
    
    • 1
    • 2
    • 3
    • 4
    • 5

    安装node

    sudo apt update
    sudo apt install nodejs npm
    sudo curl -sL https://deb.nodesource.com/setup_14.x | sudo -E bash -
    sudo apt install nodejs
    
    • 1
    • 2
    • 3
    • 4

    添加coc.nvim到.vimrc文件

    call plug#bing()
     Plug 'neoclide/coc.nvim', {'branch': 'release'}  
    call plug#end()
    
    • 1
    • 2
    • 3

    :PlugInstall 安装自动补全插件
    :CocInfo 检查插件安装情况
    :CocInstall coc-json coc-tsserver支持JSON和Typescript相关子插件

    配置服务器

    :CocConfig添加Python配置数据
    :CocInstall coc-pyright

    // be careful not to condense the hierarchy as it breaks pyls
    "languageserver": {
      "python": {
        "command": "python",
        "args": [
          "-mpyls",
          "-vv",
          "--log-file",
          "/tmp/lsp_python.log"
        ],
        "trace.server": "verbose",
        "filetypes": [
          "python"
        ],
        "settings": {
          "pyls": {
            "enable": true,
            "trace": {
              "server": "verbose"
            },
            "commandPath": "",
            "configurationSources": [
              "pycodestyle"
            ],
            "plugins": {
              "jedi_completion": {
                "enabled": true
              },
              "jedi_hover": {
                "enabled": true
              },
              "jedi_references": {
                "enabled": true
              },
              "jedi_signature_help": {
                "enabled": true
              },
              "jedi_symbols": {
                "enabled": true,
                "all_scopes": true
              },
              "mccabe": {
                "enabled": true,
                "threshold": 15
              },
              "preload": {
                "enabled": true
              },
              "pycodestyle": {
                "enabled": true
              },
              "pydocstyle": {
                "enabled": false,
                "match": "(?!test_).*\\.py",
                "matchDir": "[^\\.].*"
              },
              "pyflakes": {
                "enabled": true
              },
              "rope_completion": {
                "enabled": true
              },
              "yapf": {
                "enabled": true
              }
            }
          }
        }
      }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70

    设置TAB 代码补全

    在.vimrc文件中添加以下代码

    set nobackup
    set nowritebackup
    set updatetime=300
    set signcolumn=yes
    inoremap <silent><expr> <TAB>
          \ coc#pum#visible() ? coc#pum#next(1):
          \ CheckBackspace() ? "\" :
          \ coc#refresh()
    inoremap <expr><S-TAB> coc#pum#visible() ? coc#pum#prev(1) : "\"
    
    inoremap <silent><expr> <CR> coc#pum#visible() ? coc#pum#confirm()
                                  \: "\u\\=coc#on_enter()\"
    
    function! CheckBackspace() abort
      let col = col('.') - 1
      return !col || getline('.')[col - 1]  =~# '\s'
    endfunction
    
    " Use  to trigger completion.
    if has('nvim')
      inoremap   coc#refresh()
    else
      inoremap   coc#refresh()
    endif
    
    " Use `[g` and `]g` to navigate diagnostics
    " Use `:CocDiagnostics` to get all diagnostics of current buffer in location list.
    nmap  [g (coc-diagnostic-prev)
    nmap  ]g (coc-diagnostic-next)
    
    " GoTo code navigation.
    nmap <silent> gd <Plug>(coc-definition)
    nmap <silent> gy <Plug>(coc-type-definition)
    nmap <silent> gi <Plug>(coc-implementation)
    nmap <silent> gr <Plug>(coc-references)
    
    " Use K to show documentation in preview window.
    nnoremap  K :call ShowDocumentation()
    
    function! ShowDocumentation()
      if CocAction('hasProvider', 'hover')
        call CocActionAsync('doHover')
      else
        call feedkeys('K', 'in')
      endif
    endfunction
    
    " 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 <leader>f  <Plug>(coc-format-selected)
    nmap <leader>f  <Plug>(coc-format-selected)
    
    augroup mygroup
      autocmd!
      " Setup formatexpr specified filetype(s).
      autocmd FileType typescript,json setl formatexpr=CocAction('formatSelected')
      " Update signature help on jump placeholder.
      autocmd User CocJumpPlaceholder call CocActionAsync('showSignatureHelp')
    augroup end
    
    " Applying codeAction to the selected region.
    " Example: `<leader>aap` for current paragraph
    xmap <leader>a  <Plug>(coc-codeaction-selected)
    nmap <leader>a  <Plug>(coc-codeaction-selected)
    
    " Remap keys for applying codeAction to the current buffer.
    nmap ac  (coc-codeaction)
    " Apply AutoFix to problem on the current line.
    nmap <leader>qf  <Plug>(coc-fix-current)
    
    " Run the Code Lens action on the current line.
    nmap cl  (coc-codelens-action)
    
    " Map function and class text objects
    " NOTE: Requires 'textDocument.documentSymbol' support from the language server.
    xmap if (coc-funcobj-i)
    omap if (coc-funcobj-i)
    xmap af (coc-funcobj-a)
    omap af (coc-funcobj-a)
    xmap ic (coc-classobj-i)
    omap ic (coc-classobj-i)
    xmap ac (coc-classobj-a)
    omap ac (coc-classobj-a)
    
    " Remap <C-f> and <C-b> for scroll float windows/popups.
    if has('nvim-0.4.0') || has('patch-8.2.0750')
      nnoremap <silent><nowait><expr> <C-f> coc#float#has_scroll() ? coc#float#scroll(1) : "\"
      nnoremap <silent><nowait><expr> <C-b> coc#float#has_scroll() ? coc#float#scroll(0) : "\"
      inoremap <silent><nowait><expr> <C-f> coc#float#has_scroll() ? "\=coc#float#scroll(1)\" : "\"
      inoremap <silent><nowait><expr> <C-b> coc#float#has_scroll() ? "\=coc#float#scroll(0)\" : "\"
      vnoremap <silent><nowait><expr> <C-f> coc#float#has_scroll() ? coc#float#scroll(1) : "\"
      vnoremap <silent><nowait><expr> <C-b> coc#float#has_scroll() ? coc#float#scroll(0) : "\"
    endif
    
    " Use CTRL-S for selections ranges.
    " Requires 'textDocument/selectionRange' support of language server.
    nmap <silent> <C-s> <Plug>(coc-range-select)
    xmap <silent> <C-s> <Plug>(coc-range-select)
    
    " Add `:Format` command to format current buffer.
    command! -nargs=0 Format :call CocActionAsync('format')
    
    " Add `:Fold` command to fold current buffer.
    command! -nargs=? Fold :call     CocAction('fold', <f-args>)
    
    " Add `:OR` command for organize imports of the current buffer.
    command! -nargs=0 OR   :call     CocActionAsync('runCommand', 'editor.action.organizeImport')
    
    " Add (Neo)Vim's native statusline support.
    " NOTE: Please see `:h coc-status` for integrations with external plugins that
    " provide custom statusline: lightline.vim, vim-airline.
    set statusline^=%{coc#status()}%{get(b:,'coc_current_function','')}
    
    " Mappings for CoCList
    " Show all diagnostics.
    nnoremap <silent><nowait> <space>a  :<C-u>CocList diagnostics<cr>
    " Manage extensions.
    nnoremap  e  :CocList extensions
    " Show commands.
    nnoremap <silent><nowait> <space>c  :<C-u>CocList commands<cr>
    " Find symbol of current document.
    nnoremap  o  :CocList outline
    " Search workspace symbols.
    nnoremap <silent><nowait> <space>s  :<C-u>CocList -I symbols<cr>
    " Do default action for next item.
    nnoremap  j  :CocNext
    " Do default action for previous item.
    nnoremap <silent><nowait> <space>k  :<C-u>CocPrev<CR>
    " Resume latest coc list.
    nnoremap <silent><nowait> <space>p  :<C-u>CocListResume<CR>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135

    设置F5一键执行代码

    
    "一键运行代码
    
    map  :call CompileRunGcc()
        func! CompileRunGcc()
            exec "w"
    if &filetype == 'c'
                exec "!g++ % -o %<"
                exec "!time ./%<"
    elseif &filetype == 'cpp'
                exec "!g++ % -o %<"
                exec "!time ./%<"
    elseif &filetype == 'java'
                exec "!javac %"
                exec "!time java %<"
    elseif &filetype == 'sh'
                :!time bash %
    elseif &filetype == 'python'
                exec "!time python3 %"
    elseif &filetype == 'html'
                exec "!firefox % &"
    elseif &filetype == 'go'
        "        exec "!go build %<"
                exec "!time go run %"
    elseif &filetype == 'mkd'
                exec "!~/.vim/markdown.pl % > %.html &"
                exec "!firefox %.html &"
    endif
        endfunc
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
  • 相关阅读:
    【Python】Python中变量的类型是动态的,如何优雅获取变量类型?
    计算机毕业设计Java高铁在线购票系统(源码+系统+mysql数据库+lw文档)
    spring6概述
    【如何学习CAN总线测试】——CAN交互层测试
    10 种保证接口数据安全的方案!
    2022年全球市场单线激光雷达总体规模、主要生产商、主要地区、产品和应用细分研究报告
    Bootstrap Modal
    Fuzz:内存模糊测试
    【AUTOSAR】【CAN通信】CanSyn
    代码随想录算法训练营 day46|139.单词拆分
  • 原文地址:https://blog.csdn.net/weixin_45764245/article/details/126195012