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
- Host: GitHub
- URL: https://github.com/nearhuscarl/vim-config
- Owner: NearHuscarl
- Created: 2017-12-05T07:01:23.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2019-01-28T17:46:36.000Z (over 6 years ago)
- Last Synced: 2025-01-04T03:10:35.889Z (9 months ago)
- Topics: vim, vim-configs, vimrc
- Language: Vim script
- Size: 1.07 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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\)\@