vim启动无比慢

最近gentoo上的vim启动无比慢,可以使用多次的Ctrl+C来加快。

通过 :help slow-start 的说明

If Vim takes a long time to start up, use the --startuptime argument to find
out what happens.  There are a few common causes:
- If the Unix version was compiled with the GUI and/or X11 (check the output
  of ":version" for "+GUI" and "+X11"), it may need to load shared libraries
  and connect to the X11 server.  Try compiling a version with GUI and X11
  disabled.  This also should make the executable smaller.
  Use the -X command line argument to avoid connecting to the X server when
  running in a terminal.

果断把本地的Xmanager启动起来,vi果然地快了。

在/etc/portage目录下创建了pakcage.use文件,加上
app-editors/vim -X

重新编译安装vim后,vim就不管X了。

猜你喜欢

转载自arlen-yeh.iteye.com/blog/1677567