okular不能打开pdf错误。必须用sudo apt install okular
来安装okular,原因是gtk环境需要很多其他dependencies, 而不是在 app store下载或者使用snap 下载。
gvim每个字符都隔很远。有些字体和 gvim 不兼容,尤其是Powerline字体,在字体部分在 vimrc 中用判定语句 if(has”gui running”) endif
来让 gvim 规避一些字体。
YouCompleteMe 插件需要先安装cmake,sudo apt install cmake。
安装powelinefonts, sudo apt install fonts-powerline
。安装后会发现terminal可以用powerline字体,而gvim仍然无法使用,需要再手动安装一次powerline字体。
# clone
git clone https://github.com/powerline/fonts.git --depth=1
# install
cd fonts
./install.sh
# clean-up a bit
cd ..
rm -rf fonts
安装Ctags,sudo apt install exuberant-ctags
。
tex文件关闭字符预览,在vimrc中设置let g:tex_conceal=''
。
安装vim-plug
mkdir -p ~/.vim/autoload/
wget -P ~/.vim/autoload/ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
导入我自己的vimrc配置,
wget -P ~/ https://raw.githubusercontent.com/yxrdydh/Vimrc_Ubuntu/master/.vimrc
进入vim,安装插件
:PlugInstall
Vim-Plug其他命令
查看插件状态:
:PlugStatus
更新插件:
:PlugUpdate
更新vim-plug本身:
:PlugUpgrade
导入YouCompleteMe配置文件
wget -P ~/.vim/plugged/YouCompleteMe/ https://raw.githubusercontent.com/yxrdydh/Vimrc_Ubuntu/master/ycm_extra_config.py
网友评论