mirror of
https://github.com/prurigro/darkcloud-nvimconfig.git
synced 2024-11-09 15:06:38 -05:00
Added the MatchTagAlways plugin to replace breeze matching
This commit is contained in:
parent
e810a75d10
commit
c79712cd4c
4 changed files with 9 additions and 1 deletions
3
.gitmodules
vendored
3
.gitmodules
vendored
|
@ -85,3 +85,6 @@
|
|||
[submodule "vim/bundle/vim-polyglot-darkcloud"]
|
||||
path = vim/bundle/vim-polyglot-darkcloud
|
||||
url = https://github.com/prurigro/vim-polyglot-darkcloud.git
|
||||
[submodule "vim/bundle/MatchTagAlways"]
|
||||
path = vim/bundle/MatchTagAlways
|
||||
url = https://github.com/Valloric/MatchTagAlways.git
|
||||
|
|
|
@ -131,13 +131,13 @@ For a complete list of mappings specific to **darkcloud-vimconfig**, check the l
|
|||
|
||||
* [auto-autoformat](https://github.com/Chiel92/vim-autoformat): Provides easy code formatting in Vim by integrating existing code formatters.
|
||||
* [autoswap.vim](https://github.com/vim-scripts/autoswap.vim): Switch to open editor window instead of asking what to do with swapfile.
|
||||
* [breeze.vim](https://github.com/prurigro/breeze.vim): Provides tag matching and navigation shortcuts for HTML.
|
||||
* [emmet-vim](https://github.com/mattn/emmet-vim.git): Support for expanding abbreviations.
|
||||
* [webapi-vim](https://github.com/mattn/webapi-vim.git) A web library used by emmet to provide support for custom snippets.
|
||||
* [goyo.vim](https://github.com/junegunn/goyo.vim) Distraction-free writing in Vim
|
||||
* [grep](https://github.com/yegappan/grep.git): Provides the ability to perform various match-based searches using grep.
|
||||
* [gundo.vim](https://github.com/sjl/gundo.vim.git): Sidebar to visualize your undo tree and browse the differences of each change.
|
||||
* [lightline.vim](https://github.com/itchyny/lightline.vim) A light and configurable statusline/tabline for Vim.
|
||||
* [MatchTagAlways](https://github.com/Valloric/MatchTagAlways) A Vim plugin that always highlights the enclosing html/xml tags.
|
||||
* [neocomplcache.vim](https://github.com/Shougo/neocomplcache.vim.git) The '*ultimate*' auto-completion system for Vim.
|
||||
* [ReplaceWithRegister](https://github.com/vim-scripts/ReplaceWithRegister.git) Replace text with the contents of a register (for paste+replace without writing over the buffer).
|
||||
* [SpellCheck](https://github.com/vim-scripts/SpellCheck.git) Provides a list of spelling mistakes in the bottom bar that can be clicked to find them in the document.
|
||||
|
|
1
vim/bundle/MatchTagAlways
Submodule
1
vim/bundle/MatchTagAlways
Submodule
|
@ -0,0 +1 @@
|
|||
Subproject commit 8cf9444704091f4babedd757617f03c390bb0f92
|
|
@ -64,6 +64,10 @@
|
|||
nmap ]u <Plug>(Markdown_MoveToParentHeader)
|
||||
"}}}
|
||||
|
||||
"MATCHTAGALWAYS: {{{
|
||||
let g:mta_filetypes = {'aspnet':1, 'html':1, 'xhtml':1, 'xml':1, 'php':1, 'jinja':1}
|
||||
"}}}
|
||||
|
||||
"NEOCOMPLCACHE AUTOCOMPLETION PLUGIN: {{{
|
||||
let g:neocomplcache_enable_at_startup=1
|
||||
let g:neocomplcache_enable_smart_case=1
|
||||
|
|
Loading…
Reference in a new issue