Saturday, August 27, 2016

Re: managing dotfiles and plugins on remote server

> Well I modified and simplified my dotfiles in github.
> https://github.com/Luis-Henriquez-Perez/dotfiles
>
> It still doesn't work on the remote server but it works on my local computer.
> I'm thinking maybe it's has something to do with the remote server.

I would suggest you to try adding your vim plugins as submodules in your repository. This way you can simply clone your repository recursively and git will handle downloading your plugins for you automatically. That's how I manage my own dotfiles, here's a link for reference: https://github.com/msimkunas/dotfiles

To add a submodule, type the following from the root folder of your repository: git submodule add <repo url> <destination directory>

To clone your repository (including submoules): git clone --recursive <repo_url> <destination directory> (note the --recursive flag)

--
--
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

---
You received this message because you are subscribed to the Google Groups "vim_use" group.
To unsubscribe from this group and stop receiving emails from it, send an email to vim_use+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

No comments: