An open API service indexing awesome lists of open source software.

https://github.com/nearhuscarl/vim-config

vim and gvim settings
https://github.com/nearhuscarl/vim-config

vim vim-configs vimrc

Last synced: 8 months ago
JSON representation

vim and gvim settings

Awesome Lists containing this project

README

          

# vim-config
personal vim settings

## Tips

### Regex

##### Negative Lookahead

```vim
/Foo\(Bar\)\@!
```

| Match | No Match |
|:------:|:--------:|
| FooBaz | FooBar |
| FooQux | |
| FooMuh | |

##### Negative Lookbehind

```vim
/\(Foo\)\@