From be265eac7ca109bd4d7b193a27c2c6e469376173 Mon Sep 17 00:00:00 2001 From: Dmytro Meleshko Date: Thu, 22 Apr 2021 20:11:56 +0300 Subject: [PATCH 1/2] [nvim] minor fixes to typescript syntax highlighting --- nvim/colors/dotfiles.vim | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nvim/colors/dotfiles.vim b/nvim/colors/dotfiles.vim index 6398166..f6dcc2b 100644 --- a/nvim/colors/dotfiles.vim +++ b/nvim/colors/dotfiles.vim @@ -330,6 +330,7 @@ hi! link typescriptCall Variable hi! link typescriptArrowFuncArg typescriptCall hi! link typescriptFuncType typescriptCall + hi! link typescriptMessage NONE hi! link typescriptVariable jsStorageClass hi! link typescriptAmbientDeclaration typescriptVariable hi! link typescriptVariableDeclaration Variable @@ -342,6 +343,7 @@ hi! link typescriptConstructorType typescriptConstructSignature hi! link typescriptEndColons Delimiter hi! link typescriptImport jsImport + hi! link typescriptImportType typescriptImport hi! link typescriptExport jsExport hi! link typescriptNull jsNull hi! link typescriptObjectLabel jsObjectKey From 0221e6c08c3abc13440168d92a95995b16e41ac7 Mon Sep 17 00:00:00 2001 From: Dmytro Meleshko Date: Fri, 23 Apr 2021 01:19:59 +0300 Subject: [PATCH 2/2] [nvim] add a binding for my other favorite git command --- nvim/plugin/git.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/nvim/plugin/git.vim b/nvim/plugin/git.vim index cb154da..1b8b235 100644 --- a/nvim/plugin/git.vim +++ b/nvim/plugin/git.vim @@ -11,4 +11,5 @@ nnoremap gC :Git commit --amend nnoremap gl :Gclog nnoremap gp :Git push + nnoremap gP :Git push --force-with-lease " }}}