Compare commits

...

3 commits

Author SHA1 Message Date
pull[bot]
0643bdf1bf
Merge pull request #240 from dmitmel/master
[pull] master from dmitmel:master
2021-04-22 22:30:01 +00:00
Dmytro Meleshko
0221e6c08c [nvim] add a binding for my other favorite git command 2021-04-23 01:26:10 +03:00
Dmytro Meleshko
be265eac7c [nvim] minor fixes to typescript syntax highlighting 2021-04-22 20:11:56 +03:00
2 changed files with 3 additions and 0 deletions

View file

@ -330,6 +330,7 @@
hi! link typescriptCall Variable hi! link typescriptCall Variable
hi! link typescriptArrowFuncArg typescriptCall hi! link typescriptArrowFuncArg typescriptCall
hi! link typescriptFuncType typescriptCall hi! link typescriptFuncType typescriptCall
hi! link typescriptMessage NONE
hi! link typescriptVariable jsStorageClass hi! link typescriptVariable jsStorageClass
hi! link typescriptAmbientDeclaration typescriptVariable hi! link typescriptAmbientDeclaration typescriptVariable
hi! link typescriptVariableDeclaration Variable hi! link typescriptVariableDeclaration Variable
@ -342,6 +343,7 @@
hi! link typescriptConstructorType typescriptConstructSignature hi! link typescriptConstructorType typescriptConstructSignature
hi! link typescriptEndColons Delimiter hi! link typescriptEndColons Delimiter
hi! link typescriptImport jsImport hi! link typescriptImport jsImport
hi! link typescriptImportType typescriptImport
hi! link typescriptExport jsExport hi! link typescriptExport jsExport
hi! link typescriptNull jsNull hi! link typescriptNull jsNull
hi! link typescriptObjectLabel jsObjectKey hi! link typescriptObjectLabel jsObjectKey

View file

@ -11,4 +11,5 @@
nnoremap <leader>gC :Git commit --amend nnoremap <leader>gC :Git commit --amend
nnoremap <leader>gl :Gclog<CR> nnoremap <leader>gl :Gclog<CR>
nnoremap <leader>gp :Git push nnoremap <leader>gp :Git push
nnoremap <leader>gP :Git push --force-with-lease
" }}} " }}}