Skip to content

JoanStar/vim_awesome

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

vim_awesome

my vim configuration, based on amix's project (https://github.com/amix/vimrc).

install

# backup your old configuration files
cd ~
mkdir vimback
mv .vim* vimback

# clone configuration files
git clone --depth 1 https://github.com/ArthurChiao/vim_awesome.git

# move files to home directory
cd vim_awesome
mv .vim* ~

# install
cd ~/.vim_runtime
sh install_vim_awesome.sh

Problem Fixups

If you encountered neocomplete problems at vim startup, it may be that your vim version is under 7.4, or it is not lua enabled (test it with :echo has("lua").

To fix this problem, please see the solutions provided in https://github.com/Shougo/neocomplete.vim.git

If none of the solutions in the above link fits your case, just remove the neocomplete plugin:

rm .vim_runtime/sources_forked/neocomplete.vim -rf

restart the vim.

Or, you can use neocomplcache, an alternative to neocomplete. Enable this plugin by opening the flag in .vimrc:

" enable neocomplcache
" this is an alternative word-completion plugin if you can not use
" neocomplete, which needs lua enabled
let g:neocomplcache_enable_at_startup = 1 # enable this flag

Cheat sheet

cheat sheet

About

my vim configuration, based on amix's project (https://github.com/amix/vimrc).

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Vim Script 72.9%
  • C++ 13.5%
  • IDL 4.7%
  • Vala 2.5%
  • Erlang 1.0%
  • Java 1.0%
  • Other 4.4%