效果图
一,升级vim至8.0以上的版本
升级方法
sudo add-apt-repository ppa:jonathonf/vim
sudo apt-get update
sudo apt-get install vim-nox-py2
sudo mv /usr/local/bin/vim /usr/local/bin/vim.old
sudo ln -s /usr/bin/vim.nox-py2 /usr/local/bin/vim
二,为vim配置plugin插件
$ curl -fLo ~/.vim/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
要安装插件,你必须如下所示首先在 Vim 配置文件中声明它们。一般 Vim 的配置文件是 ~/.vimrc
call plug#begin('~/.vim/plugged')
Plug 'itchyny/lightline.vim'
call plug#end()
使用以下命令检查状态:
:PlugStatus
三,设置vimrc,添加各种插件
//我的vimrc配置 后续更新
四,将xshell和linux同步为256色,并修改xshell配色方案
-
设置linux256色
在.bashrc中添加如下代码 (如果终端支持256色 那么开启256)
if [ -e /usr/share/terminfo/x/xterm-256color ]; then export TERM='xterm-256color' else export TERM='xterm-color' fi
VIM也改成256色的
并且Copy到” /usr/share/vim/vim{version}/colors/”目录下,然后在VIM的配置文件中加”colorscheme darkburn”
到此,Linux和VIM的确都是256色了
-
必须更改Xshell的配色方案(蓝色的显示内容不清晰,很模糊)
配色方案:
[Solarized Dark] text(bold)=839496 magenta(bold)=6c71c4 text=839496 white(bold)=fdf6e3 green=859900 red(bold)=cb4b16 green(bold)=586e75 black(bold)=073642 red=dc322f blue=268bd2 black=002b36 blue(bold)=839496 yellow(bold)=657b83 cyan(bold)=93a1a1 yellow=b58900 magenta=dd3682 background=042028 white=eee8d5 cyan=2aa198 [Names] count=1 name0=Solarized Dark
请保存为solarized-dark.xcs,然后在配色那里导入即可。
[参考博客1]: "https://blog.csdn.net/boy198332/article/details/27566187"
[参考博客2]: "https://blog.csdn.net/wide288/article/details/25072441"
[参考博客3]: "https://blog.csdn.net/boy198332/article/details/27566187"
[参考博客4]: "https://blog.csdn.net/yanjiee/article/details/76066936"
[参考博客4]: "https://linux.cn/article-9751-1.html"