Compare commits

...

4 Commits

4 changed files with 9 additions and 1 deletions

View File

@ -109,3 +109,6 @@ ${2: constructor(props) \{
}
endsnippet
snippet th "this.handle..."
this.handle${1:Click} = this.handle$1.bind(this);
endsnippet

View File

@ -0,0 +1 @@
extends css, javascript

View File

@ -295,6 +295,10 @@ let g:mta_filetypes = {
" command! HiJinja call SyntaxRange#Include('{{', '}}', 'jinja', 'jinjaBraces', 'jinjaVariable')
" 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{{{
" doesn't support universal ctags
" #Plug 'dsawardekar/wordpress.vim'

View File

@ -223,7 +223,7 @@ set smartcase
set wildmenu
set wildmode=longest:full,full
set wildignore+=/node_modules/,dist/
set wildignore+=**/node_modules/**,**/dist/**,**/.git/**,**/build/**
" Use ag over grep
if executable('ag')