Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cedarcode/cedarvim
Simple yet powerful vim distribution :herb:
https://github.com/cedarcode/cedarvim
vim vimrc
Last synced: 7 days ago
JSON representation
Simple yet powerful vim distribution :herb:
- Host: GitHub
- URL: https://github.com/cedarcode/cedarvim
- Owner: cedarcode
- License: apache-2.0
- Created: 2018-02-26T20:27:32.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-12-15T17:14:58.000Z (almost 4 years ago)
- Last Synced: 2023-03-02T01:10:49.383Z (over 1 year ago)
- Topics: vim, vimrc
- Language: Vim script
- Homepage:
- Size: 72.3 KB
- Stars: 8
- Watchers: 5
- Forks: 4
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# cedarvim
## Prerequisites
* [Vim](https://github.com/vim/vim) 7.4+ (8.0+ recommended)
## Installing
```
$ git clone https://github.com/cedarcode/cedarvim ~/.vim
$ cd ~/.vim
$ git submodule init
$ git submodule update
```## Updating
```
$ cd ~/.vim
$ git pull
$ git submodule update
```## Features
### Navigation
* `` to quickly __search__ and __open files__ and more via [ctrlp.vim](https://github.com/ctrlpvim/ctrlp.vim) package
* `` to quickly go back to recently opened files
* `` to open/close __file explorer__ and more via [nerdtree](https://github.com/scrooloose/nerdtree) package
* `` to search for all occurrences of the current word under the cursor in every file### Git
* Full git integration
* `:Ggrep` to search the work tree with `git grep` among many other features via [vim-fugitive](https://github.com/tpope/vim-fugitive) package
* `:Gbrowse` to open files/commits/etc in GitHub via [vim-rhubarb](https://github.com/tpope/vim-rhubarb) package
* Shows a git diff in the "gutter" (sign column) of the editor, `[c` and `]c` key mappings available to navigate diff hunks and more via [vim-gitgutter](https://github.com/airblade/vim-gitgutter) package### Ruby on Rails
* bundler wrapper, e.g. `:Bundle` to run `bundle`, `gf` (go to file) works in `Gemfile.lock`, among other features via [vim-bundler](https://github.com/tpope/vim-bundler) package
* rails integration, e.g. `gf` for partials and others, `:Rails console`, `:Generate controller Blog`, among many other features via [vim-rails](https://github.com/tpope/vim-rails) package
* Auto adds `end` after `if`, `do`, `def` and several other keywords via [vim-endwise](https://github.com/tpope/vim-endwise) package### Other
* `gc` or `gcc` (depending on mode) to toggle source code commented state and more via [vim-commentary](https://github.com/tpope/vim-commentary) package
* Highlights trailing whitespaces in red and provides `:FixWhitespace` to fix it via [vim-trailing-whitespaces](https://github.com/bronson/vim-trailing-whitespace) package
* Several default settings recommended by [@tpope](https://github.com/tpope) via [vim-sensible](https://github.com/tpope/vim-sensible) package
* 20+ key mapping/shortcuts recommended by [@tpope](https://github.com/tpope) via [vim-unimpaired](https://github.com/tpope/vim-unimpaired) package
* Shows line numbers by default
* Uses 2-spaces indentation by default
* Uses system clipboard by default
* Mouse/trackpad enabled in all modes by default
* `` and `` to move text lines up and down easily, in both normal and visual modes
* `*.swp` files kept in hidden location to avoid dirty directories
* Persistent undo and redo. E.g. You can undo after closing and reopening vim.## Your own customizations
Put any extra configuration and/or overrides in `~/.vimrc.after`. cedarvim will pick them up automatically.
### Adding new plugin
```
$ cd ~/.vim
$ git submodule add pack/cedarvim/start/
```### Removing a plugin
```
$ cd ~/.vim
$ git submodule deinit pack/cedarvim/start/
$ git rm pack/cedarvim/start/
```