https://github.com/adamzaninovich/vimfiles
My Vim Configuration
https://github.com/adamzaninovich/vimfiles
Last synced: 6 days ago
JSON representation
My Vim Configuration
- Host: GitHub
- URL: https://github.com/adamzaninovich/vimfiles
- Owner: adamzaninovich
- Created: 2013-12-20T17:19:55.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2018-09-26T06:36:13.000Z (over 6 years ago)
- Last Synced: 2024-12-25T11:34:21.430Z (5 months ago)
- Language: Vim script
- Homepage:
- Size: 936 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Adam Zaninovich's Vim Configuration
## Goals
* be as simple as possible
* only add what I really need
* revisit often, removing unused configurations and plugins
* try new things, don't let this become stale
* understand how and why everything works the way it does and why it's there## Installation
Clone this repository into `~/.config/nvim` and link files for standard vim, if
necessary:```
mkdir -p $HOME/.config
git clone [email protected]:adamzaninovich/vimfiles.git $HOME/.config/nvim
```Installation for nvim is finished there; if using standard vim, continue...
```
ln -s $HOME/.config/nvim $HOME/.vim
ln -s $HOME/.config/nvim/init.vim $HOME/.vimrc
```After that, all that's left is to run upgrade and install on Plug inside vim...
```
:PlugUpgrade "Updates Plug to latest version
:PlugInstall "Installs all plugins
```Restart vim, and you're ready to go.