Ubuntu20.04安装vimplus插件

参考文章:

  1. Ubuntu Linux下vimplus的安装及使用
  2. 安装vimplus之后乱码问题解决

1、安装步骤:

shell 复制代码
$ git clone https://github.com/chxuan/vimplus.git  ~/.vimplus

$ cd  ~/.vimplus

$ ./install.sh

2、./install.sh 过程

  1. 出现选择是否备份 /home/yin-roc/.vimrc,选择 Y:

    shell 复制代码
    Find /home/yin-roc/.vimrc already exists,backup /home/yin-roc/.vimrc to /home/yin-roc/.vimrc_bak_20240629142046? [Y/N] (输入)Y
  2. 出现选择使用python2还是python3编译ycm,这里博主选择3:

    shell 复制代码
    Please choose to compile ycm with python2 or python3, if there is a problem with the current selection, please choose another one. [2/3] (输入)3
    Compile ycm with python3.
  3. 开始跳转到安装插件界面,等待完成后会自动回到终端;

  4. 出现如下界面表示安装成功:

  5. 保险起见,终端输入 vim 测试一下:

    出现如下问题:

    报错说:The ycmd server SHUT DOWN (restart with :YcmRestartServer)。原因是因为 YouCompleteMe 插件引起的。

    解决方法:

    shell 复制代码
    进入其插件目录:
    $ cd ~/.vim/plugged/YouCompleteMe
    运行:
    $ ./install.py

3、乱码问题

安装完成之后, 使用 vim test.cpp 创建一个文件会出现乱码问题,此时是因为终端字体设置不对而导致。

解决方法:

  1. 下载字体包

  2. 解压后进入解压后的文件目录,执行install.sh 脚本;

    shell 复制代码
    ./install.sh
  3. 打开终端,右键,配置文件首选项,配置,字体栏目选择DroidSansMono Nerd Font Book

  4. 再次使用 vim test.cpp 打开文件,一切正常,没有乱码

相关推荐
keep__go1 小时前
Linux 批量配置互信
linux·运维·服务器·数据库·shell
矛取矛求1 小时前
Linux中给普通账户一次性提权
linux·运维·服务器
Fanstay9851 小时前
在Linux中使用Nginx和Docker进行项目部署
linux·nginx·docker
大熊程序猿1 小时前
ubuntu 安装kafka-eagle
linux·ubuntu·kafka
daizikui3 小时前
Linux文件目录命令
linux·运维·服务器
NikitaC3 小时前
ldconfig 和 LD_LIBRARY_PATH 区别
linux·c++
清源妙木真菌3 小时前
Linux:进程概念
linux
许嵩664 小时前
IC 脚本之VIM 记录
linux·编辑器·vim
花生的酱5 小时前
Shell编程之正则表达式与文本处理器
linux·运维·正则表达式