Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/joshdmiller/vim
My vim configuration
https://github.com/joshdmiller/vim
vim vim-configuration
Last synced: 12 days ago
JSON representation
My vim configuration
- Host: GitHub
- URL: https://github.com/joshdmiller/vim
- Owner: joshdmiller
- License: mit
- Created: 2014-03-06T03:43:11.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2022-07-08T18:34:30.000Z (over 2 years ago)
- Last Synced: 2024-04-14T23:26:38.059Z (7 months ago)
- Topics: vim, vim-configuration
- Language: Vim script
- Size: 28.3 KB
- Stars: 14
- Watchers: 5
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: mit-license.md
Awesome Lists containing this project
README
# Josh David Miller's Vim Configuration
## Installation
Make sure you clone this repository with the `--recursive` flag, or you will have to update the
submodules manually.Once you have the repository on your local machine, you will need to create symbolic links from the
path of the repo to your home folder. E.g.:```
$ ln -s /path/to/repo/vim $HOME/.vim
$ ln -s /path/to/repo/vimrc $HOME/.vimrc
```This is necessary to get this working. If you have an existing vim configuration, you will need to
remove or rename it. I use a plugin system to manage the many varied vim plugins I use regularly. To
install those plugins, you'll need to run the following command:```
$ vim +PlugInstall +qall
```This will give an error when you run it due to the missing theme, but you can press any key to get
past the error and then the install will proceed as normal. Just ignore the error.## Dependencies
Obviously, you need a fairly recent version of Vim. I use 8.0, but slightly older versions may work
too. But some of the plugins require additional packages to be installed on your system. These
include.I use the Adobe Source Code Pro font, so you'll want to install that too, or else change the font
name in `vim/lib/environment.vim`.## Happy Vimming!