diff options
author | mattn <mattn.jp@gmail.com> | 2019-12-30 10:37:23 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-30 10:37:23 +0900 |
commit | 7c7a737b311968aba92251d71775d0bb5555403d (patch) | |
tree | cc21fb08a208dad4f53503b341f84c702939e223 /settings.json | |
parent | f53792d9192c9a7173d8b758ee26c86d85cbb94b (diff) | |
parent | f3d4e807d673d745c2229d82cedbff11f20df124 (diff) | |
download | vim-lsp-settings-7c7a737b311968aba92251d71775d0bb5555403d.tar.gz vim-lsp-settings-7c7a737b311968aba92251d71775d0bb5555403d.tar.bz2 vim-lsp-settings-7c7a737b311968aba92251d71775d0bb5555403d.zip |
Merge pull request #45 from johejo/fix/react_filetype_detection
fix: add filetype for react
Diffstat (limited to 'settings.json')
-rw-r--r-- | settings.json | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/settings.json b/settings.json index 7f91f20..c1dd381 100644 --- a/settings.json +++ b/settings.json @@ -125,6 +125,20 @@ ] } ], + "javascriptreact": [ + { + "command": "typescript-language-server", + "requires": [ + "npm" + ] + }, + { + "command": "javascript-typescript-stdio", + "requires": [ + "npm" + ] + } + ], "json": [ { "command": "json-languageserver", @@ -275,6 +289,14 @@ ] } ], + "typescriptreact": [ + { + "command": "typescript-language-server", + "requires": [ + "npm" + ] + } + ], "vim": [ { "command": "vim-language-server", |