https://github.com/musoke/dotfiles
My dotfiles.
https://github.com/musoke/dotfiles
dotfiles
Last synced: 2 months ago
JSON representation
My dotfiles.
- Host: GitHub
- URL: https://github.com/musoke/dotfiles
- Owner: musoke
- License: mit
- Created: 2016-03-05T04:49:23.000Z (about 9 years ago)
- Default Branch: main
- Last Pushed: 2024-04-19T18:37:58.000Z (about 1 year ago)
- Last Synced: 2025-02-01T05:43:41.408Z (4 months ago)
- Topics: dotfiles
- Language: Shell
- Size: 370 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: newsbeuter/.config/newsbeuter/config
- License: LICENSE
Awesome Lists containing this project
README
# Dotfiles
## Installation
Use
```
git clone --recursive [email protected]:musoke/dotfiles.git
```
to clone the repository and submodules.Use stow to symlink files to the appropriate locations. For example, to install
git configuration:
```
stow git
```## Vim
I use [Pathogen](https://github.com/tpope/vim-pathogen) to manage Vim plugins.
To initialize them (if `--recursive` not used when cloning), use
```
git submodule update --init --recursive
```
To add a new plugin,
```
cd dotfiles/.vim
git submodule add https://github.com/foo/bar.git bundle/bar
```
To update one plugin,
```
git submodule update --remote path/to/plugin/
```
To update all plugins,
```
git submodule update --remote
```
Adding a tilde to the end of the directory containing a bundle will cause it to be ignored by Pathogen.