Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jandelgado/vimconfig
my vim configuration
https://github.com/jandelgado/vimconfig
Last synced: about 2 months ago
JSON representation
my vim configuration
- Host: GitHub
- URL: https://github.com/jandelgado/vimconfig
- Owner: jandelgado
- Created: 2016-10-15T12:36:58.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2024-06-16T19:57:19.000Z (7 months ago)
- Last Synced: 2024-10-13T03:24:40.696Z (3 months ago)
- Language: Vim Script
- Size: 334 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# my vim configuration
This is my personal vim configuration, with plugins managed by the vim-plug
plugin manager.See
* [Cheat-Sheet](CheatSheet.md)
* https://github.com/junegunn/vim-plugfor details.
## Plugins
* Plug 'fatih/vim-go',
* Plug 'janko/vim-test',
* Plug 'scrooloose/nerdcommenter',
* Plug 'w0rp/ale',
* Plug 'tpope/vim-fugitive',
* Plug 'tpope/vim-abolish',
* Plug 'tpope/vim-surround',
* Plug 'tpope/vim-dispatch',
* Plug 'plasticboy/vim-markdown',
* Plug 'mzlogin/vim-markdown-toc',
* Plug 'godlygeek/tabular',
* Plug 'itchyny/lightline.vim',
* Plug 'junegunn/fzf.vim',
* Plug 'Chiel92/vim-autoformat',
* Plug 'morhetz/gruvbox',
* Plug 'majutsushi/tagbar',
* Plug 'mgedmin/coverage-highlight.vim'## Installation
```
git clone https://github.com/jandelgado/vimconfig.git ~/.vim && ln -s ~/.vim/vimrc ~/.vimrc
```## Plugin maintenance
Plugins are managed by [vim-plug](https://github.com/junegunn/vim-plug).
### Add new plugins from github.com
Add `Plug` section to vimrc and run `:PlugInstall`
### Update plugins
Run `:PlugStatus` to check, `:PlugUpdate` to update.
### Remove a plugin
Remove `Plug` section from vimrc and run `:PlugClean`