安装spf13之前的准备:
安装Git:
sudo apt-get install git sudo apt-get install curl
使用官方给出的方法进行安装并执行https://github.com/spf13/spf13-vim
curl https://j.mp/spf13-vim3 -L > spf13-vim.sh && sh spf13-vim.sh
需要等待一段时间,让脚本自行去下载插件进行安装。
我使用的是tty1这种终端;
安装完成后发现不能自动提示,在命令模式“:”下输入“NeoCompleteEnable”发现不能启动提示
“ It requires Vim 7.3.885 or later with Lua support ("+lua") ”
按照github上的方法安装vim-nox、vim-athena就可以解决问题{传送门}(https://github.com/spf13/spf13-vim/issues/773):
sudo apt-get install vim-nox sudo apt-get install vim-athena
自动补全不能只能提示
在使用过程中,自动提示的东西不能显示,还是那种插件形式的。
解决方法{传送门}(https://github.com/spf13/spf13-vim/issues/819):
在.vimrc.loacl中添加如下代码:
inoremap <expr><CR> neosnippet#expandable() ? neosnippet#mappings#expand_or_jump_impl() : pumvisible() ? neocomplete#close_popup() : "\<CR>"
不显示配色效果:
在.vimrc.loacl中添加如下代码【可参考(http://www.cnblogs.com/keepHack/archive/2012/04/09/2439361.html)】:
set t_Co=256
后续遇到的问题,会继续添加
时间: 2024-10-14 18:08:46