Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Neobundle to dein.vim #3

Open
hdknr opened this issue Mar 22, 2016 · 3 comments
Open

Neobundle to dein.vim #3

hdknr opened this issue Mar 22, 2016 · 3 comments

Comments

@hdknr
Copy link
Owner

hdknr commented Mar 22, 2016

@hdknr
Copy link
Owner Author

hdknr commented Mar 22, 2016

$ curl https://raw.githubusercontent.com/Shougo/dein.vim/master/bin/installer.sh > installer.sh
$ sh installer.sh ~/.vim/dein
Install to "/Users/you/.vim/dein/repos/github.com/Shougo/dein.vim"...

git is /usr/local/bin/git

Begin fetching dein...
Cloning into '/Users/you/.vim/dein/repos/github.com/Shougo/dein.vim'...
remote: Counting objects: 2100, done.
remote: Compressing objects: 100% (208/208), done.
remote: Total 2100 (delta 125), reused 0 (delta 0), pack-reused 1876
Receiving objects: 100% (2100/2100), 311.95 KiB | 346.00 KiB/s, done.
Resolving deltas: 100% (1192/1192), done.
Checking connectivity... done.
Done.
Please add the following settings for dein to the top of your vimrc (Vim) or init.vim (NeoVim) file:


"dein Scripts-----------------------------
if &compatible
  set nocompatible               " Be iMproved
endif

" Required:
set runtimepath^=/Users/you/.vim/dein/repos/github.com/Shougo/dein.vim

" Required:
call dein#begin(expand('/Users/you/.vim/dein'))

" Let dein manage dein
" Required:
call dein#add('Shougo/dein.vim')

" Add or remove your plugins here:
call dein#add('Shougo/neosnippet.vim')
call dein#add('Shougo/neosnippet-snippets')

" You can specify revision/branch/tag.
call dein#add('Shougo/vimshell', { 'rev': '3787e5' })

" Required:
call dein#end()

" Required:
filetype plugin indent on

" If you want to install not installed plugins on startup.
"if dein#check_install()
"  call dein#install()
"endif

"End dein Scripts-------------------------


Done.
Complete setup dein!

@hdknr
Copy link
Owner Author

hdknr commented Mar 22, 2016

$ brew install neovim/neovim/neovim
==> Tapping neovim/neovim
Cloning into '/usr/local/Library/Taps/neovim/homebrew-neovim'...
remote: Counting objects: 7, done.
remote: Compressing objects: 100% (6/6), done.
remote: Total 7 (delta 0), reused 4 (delta 0), pack-reused 0
Unpacking objects: 100% (7/7), done.
Checking connectivity... done.
Tapped 1 formula (32 files, 32.7K)
==> Installing neovim from neovim/neovim
==> Downloading https://github.com/neovim/neovim/archive/v0.1.2.tar.gz
==> Downloading from https://codeload.github.com/neovim/neovim/tar.gz/v0.1.2
######################################################################## 100.0%
==> Downloading https://github.com/libuv/libuv/archive/v1.8.0.tar.gz
==> Downloading from https://codeload.github.com/libuv/libuv/tar.gz/v1.8.0
######################################################################## 100.0%
==> Downloading https://github.com/msgpack/msgpack-c/archive/cpp-1.0.0.tar.gz
==> Downloading from https://codeload.github.com/msgpack/msgpack-c/tar.gz/cpp-1.0.0
######################################################################## 100.0%
==> Downloading https://raw.githubusercontent.com/neovim/deps/master/opt/LuaJIT-2.0.4.tar.gz
######################################################################## 100.0%
==> Downloading https://github.com/keplerproject/luarocks/archive/5d8a16526573b36d5b22aa74866120c998466697.tar.gz
==> Downloading from https://codeload.github.com/keplerproject/luarocks/tar.gz/5d8a16526573b36d5b22aa74866120c998466697
######################################################################## 100.0%
==> Downloading https://github.com/mauke/unibilium/archive/v1.2.0.tar.gz
==> Downloading from https://codeload.github.com/mauke/unibilium/tar.gz/v1.2.0
######################################################################## 100.0%
==> Downloading http://www.leonerd.org.uk/code/libtermkey/libtermkey-0.18.tar.gz
######################################################################## 100.0%
==> Downloading https://github.com/neovim/libvterm/archive/1b745d29d45623aa8d22a7b9288c7b0e331c7088.tar.gz
==> Downloading from https://codeload.github.com/neovim/libvterm/tar.gz/1b745d29d45623aa8d22a7b9288c7b0e331c7088
######################################################################## 100.0%
==> Downloading https://github.com/jemalloc/jemalloc/releases/download/4.0.2/jemalloc-4.0.2.tar.bz2
==> Downloading from https://github-cloud.s3.amazonaws.com/releases/13310527/17afd0b4-6058-11e5-9f4d-a15a42f2d941.bz2?X-Amz-Algo
######################################################################## 100.0%
==> Building third-party dependencies.
==> cmake ../third-party -DUSE_BUNDLED_BUSTED=OFF -DUSE_EXISTING_SRC_DIR=ON -DCMAKE_C_FLAGS_RELEASE=-DNDEBUG -DCMAKE_CXX_FLAGS_R
==> make VERBOSE=1
==> Building Neovim.
==> cmake .. -DCMAKE_C_FLAGS_RELEASE=-DNDEBUG -DCMAKE_CXX_FLAGS_RELEASE=-DNDEBUG -DCMAKE_INSTALL_PREFIX=/usr/local/Cellar/neovim
==> make VERBOSE=1 install
==> Caveats
The Neovim executable is called 'nvim'. To use your existing Vim
configuration:
    ln -s ~/.vim ~/.config/nvim
    ln -s ~/.vimrc ~/.config/nvim/init.vim
See ':help nvim' for more information on Neovim.

When upgrading Neovim, check the following page for breaking changes:
    https://github.com/neovim/neovim/wiki/Following-HEAD

If you want support for Python plugins such as YouCompleteMe, you need
to install a Python module in addition to Neovim itself.

Execute ':help nvim-python' in nvim or see the following page for more
information:
    http://neovim.io/doc/user/nvim_python.html

If you have any questions, have a look at:
    https://github.com/neovim/neovim/wiki/FAQ.
==> Summary
🍺  /usr/local/Cellar/neovim/0.1.2: 1,320 files, 17.8M, built in 4 minutes 19 seconds
$ which nvim
/usr/local/bin/nvim

@hdknr
Copy link
Owner Author

hdknr commented Mar 22, 2016

$ ln -s ~/.vim ~/.config/nvim
$ ln -s ~/.vimrc ~/.config/nvim/init.vim

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant