Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mikepruett3/dotvim
VIM Config files and plugins
https://github.com/mikepruett3/dotvim
Last synced: about 1 month ago
JSON representation
VIM Config files and plugins
- Host: GitHub
- URL: https://github.com/mikepruett3/dotvim
- Owner: mikepruett3
- Created: 2014-10-05T20:21:48.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2020-04-02T00:41:37.000Z (over 4 years ago)
- Last Synced: 2023-02-26T08:17:16.303Z (almost 2 years ago)
- Language: Vim script
- Size: 41 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Installation:
For Linux
git clone https://github.com/mikepruett3/dotvim.git ~/.vim
For Windows
git clone https://github.com/mikepruett3/dotvim.git %UserProfile%\vimfiles
## Create symlinks:
For Linux Based Installations:
ln -s ~/.vim/vimrc ~/.vimrc
For Windows (**Needs to be run as Administrator**):
mklink %UserProfile%\.vimrc %UserProfile%\.vim\vimrc
mklink %UserProfile%\.gvimrc %UserProfile%\.vim\vimrc
mklink /D %UserProfile%\.vim %UserProfile%\vimfiles
mklink /D %UserProfile%\.vim-view %UserProfile%\vimfiles\views## Install Submodules
Switch to the "~/.vim" directory, and fetch submodules:
cd ~/.vim
git submodule init
git submodule update## Adding new Submodules
Adding new submodules (bundles) to the repository
cd ~/.vim
mkdir bundle (if it dosent exist already!)
git submodule add http://github.com//.git bundle/.vim## Local Git Configurations that I cannot seem to remember!!!
Updating git repo url
git config --local user.name ""
git config --local user.email ""
git remote set-url origin [email protected]:/.git