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 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 " }}}