From 18ecbd5b338dadabee41e86319a620c0e7e4ff9c Mon Sep 17 00:00:00 2001 From: Dmytro Meleshko Date: Sun, 25 Oct 2020 17:30:08 +0200 Subject: [PATCH] [nvim] fix highlighting of destructured fields in TS --- nvim/colors/dotfiles.vim | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nvim/colors/dotfiles.vim b/nvim/colors/dotfiles.vim index 9c23aa0..2a6a76e 100644 --- a/nvim/colors/dotfiles.vim +++ b/nvim/colors/dotfiles.vim @@ -314,6 +314,8 @@ hi! link typescriptVariable jsStorageClass hi! link typescriptAmbientDeclaration typescriptVariable hi! link typescriptVariableDeclaration Variable + hi! link typescriptDestructureLabel typescriptVariableDeclaration + hi! link typescriptDestructureVariable typescriptVariableDeclaration hi! link typescriptGlobal typescriptVariableDeclaration hi! link typescriptTypeReference Type hi! link typescriptTypeParameter typescriptTypeReference