https://github.com/long-gong/saber-dot
dot files for saber
https://github.com/long-gong/saber-dot
dotfiles vim zsh
Last synced: about 2 months ago
JSON representation
dot files for saber
- Host: GitHub
- URL: https://github.com/long-gong/saber-dot
- Owner: long-gong
- Created: 2019-01-27T14:34:48.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-02-01T17:05:14.000Z (over 7 years ago)
- Last Synced: 2025-03-09T08:40:52.842Z (over 1 year ago)
- Topics: dotfiles, vim, zsh
- Language: Vim script
- Size: 156 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# saber-dot
dot files for saber
## How to Use Them
```bash
# Clone this repo
git clone https://github.com/long-gong/saber-dot.git
# cd to it
cd saber-dot
# Clone all submodules for vim
git submodule update --init --recursive
# Clone all submodules for zsh
cd script && ./clone_nested_submodules.py
# Handle special submodules
cd ../.vim/bundle/YouCompleteMe
# Please make sure you have installed all dependencies for YouCompleteMe
# before executing the following commands, which can be found at
# https://github.com/Valloric/YouCompleteMe
python install.py --clang-completer
# Backup your old dot files (if you have them)
mv ~/.vimrc ~/.vimrc.OLD
mv ~/.vim ~/.vim.OLD
mv ~/.zshrc ~/.zshrc.OLD
mv ~/.oh-my-zsh ~/.oh-my-zsh.OLD
# Move those dot files to you home directory
mv .vimrc .vim ~
mv .zshrc .oh-my-zsh ~
```