Compare commits
4 Commits
b2850f957d
...
d83f032366
Author | SHA1 | Date |
---|---|---|
Ray Elliott | d83f032366 | |
Ray Elliott | 48e85f5a87 | |
Ray Elliott | a5dc723e57 | |
Ray Elliott | f00fb8f778 |
|
@ -109,3 +109,6 @@ ${2: constructor(props) \{
|
||||||
}
|
}
|
||||||
endsnippet
|
endsnippet
|
||||||
|
|
||||||
|
snippet th "this.handle..."
|
||||||
|
this.handle${1:Click} = this.handle$1.bind(this);
|
||||||
|
endsnippet
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
extends css, javascript
|
|
@ -295,6 +295,10 @@ let g:mta_filetypes = {
|
||||||
" command! HiJinja call SyntaxRange#Include('{{', '}}', 'jinja', 'jinjaBraces', 'jinjaVariable')
|
" command! HiJinja call SyntaxRange#Include('{{', '}}', 'jinja', 'jinjaBraces', 'jinjaVariable')
|
||||||
" command! HiJinja call SyntaxRange#IncludeEx('start=/{{-\?/hs=s+2 end=/-\?}}/he=s-1', 'jinja')
|
" command! HiJinja call SyntaxRange#IncludeEx('start=/{{-\?/hs=s+2 end=/-\?}}/he=s-1', 'jinja')
|
||||||
"}}}
|
"}}}
|
||||||
|
" #vim-Styled-components{{{
|
||||||
|
"https://github.com/styled-components/vim-styled-components
|
||||||
|
Plug 'styled-components/vim-styled-components', { 'branch': 'main' }
|
||||||
|
"}}}
|
||||||
" #wordpress.vim{{{
|
" #wordpress.vim{{{
|
||||||
" doesn't support universal ctags
|
" doesn't support universal ctags
|
||||||
" #Plug 'dsawardekar/wordpress.vim'
|
" #Plug 'dsawardekar/wordpress.vim'
|
||||||
|
|
2
init.vim
2
init.vim
|
@ -223,7 +223,7 @@ set smartcase
|
||||||
|
|
||||||
set wildmenu
|
set wildmenu
|
||||||
set wildmode=longest:full,full
|
set wildmode=longest:full,full
|
||||||
set wildignore+=/node_modules/,dist/
|
set wildignore+=**/node_modules/**,**/dist/**,**/.git/**,**/build/**
|
||||||
|
|
||||||
" Use ag over grep
|
" Use ag over grep
|
||||||
if executable('ag')
|
if executable('ag')
|
||||||
|
|
Loading…
Reference in New Issue