Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wdhif/dotfiles
curl -L https://git.io/wdhifdotfiles | bash
https://github.com/wdhif/dotfiles
dotbot dotfiles fish tmux vim
Last synced: 2 months ago
JSON representation
curl -L https://git.io/wdhifdotfiles | bash
- Host: GitHub
- URL: https://github.com/wdhif/dotfiles
- Owner: wdhif
- License: apache-2.0
- Created: 2017-04-26T12:21:51.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-10-26T16:32:05.000Z (about 1 year ago)
- Last Synced: 2023-10-27T12:35:24.564Z (about 1 year ago)
- Topics: dotbot, dotfiles, fish, tmux, vim
- Language: Shell
- Homepage:
- Size: 120 KB
- Stars: 6
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# .files
![](https://github.com/wdhif/dotfiles/actions/workflows/main.yml/badge.svg):zap:curl -L https://git.io/wdhifdotfiles | bash:zap:
After cloning this repo, run `install` to automatically set up the development
environment. Note that the install script is idempotent: it can safely be run
multiple times.I'm using [Dotbot](https://github.com/anishathalye/dotbot) to manage my .files.
## Install a Vim plugin
Plugins are managed with [Pathogen.vim](https://github.com/tpope/vim-pathogen). You will have to create a new submodule in `vim/bundle` to add a plugin.
```
git submodule add PLUGIN_GIT_REPO vim/bundle/PLUGIN_NAME
```
Where PLUGIN_GIT_REPO is the url of the git repository of a plugin and PLUGIN_NAME must be the same as the one in the git repository url.
EG. `git submodule add https://github.com/tpope/vim-pathogen.git vim/bundle/vim-pathogen`## Remove a Vim plugin
Remove the git module in `.gitmodules` and remove the vim plugin directory
```
git rm vim/bundle/PLUGIN_NAME
```## Update git submodules
Vim plugins and Dotbot are managed using git submodules. To update submodules you can do the following.
```
git submodule update --remote
```