diff options
| author | 2026-04-17 10:52:56 +0100 | |
|---|---|---|
| committer | 2026-04-17 10:52:56 +0100 | |
| commit | 32315aae730744e9ab037c7e7b776e9fb3834388 (patch) | |
| tree | 64996a1a0f7e8383381ac0177e6e11ec95e26b86 /home/.config/nvim/lua/custom | |
| parent | 2ee3a4728031d7c3fe1039416ac1e9837059c8fe (diff) | |
| download | dotfiles-32315aae730744e9ab037c7e7b776e9fb3834388.tar.gz dotfiles-32315aae730744e9ab037c7e7b776e9fb3834388.tar.bz2 dotfiles-32315aae730744e9ab037c7e7b776e9fb3834388.zip | |
fix(nvim): correct typecript typo in conform config
TypeScript files were never formatted by prettier because the
filetype key was misspelled as "typecript".
Diffstat (limited to 'home/.config/nvim/lua/custom')
| -rw-r--r-- | home/.config/nvim/lua/custom/plugins/lsp.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/home/.config/nvim/lua/custom/plugins/lsp.lua b/home/.config/nvim/lua/custom/plugins/lsp.lua index 1a85f63..6fbead3 100644 --- a/home/.config/nvim/lua/custom/plugins/lsp.lua +++ b/home/.config/nvim/lua/custom/plugins/lsp.lua @@ -150,7 +150,7 @@ return { groovy = { "npm-groovy-lint" }, html = { "prettier" }, javascript = { "prettier" }, - typecript = { "prettier" }, + typescript = { "prettier" }, jenkins = { "npm-groovy-lint" }, json = { "jq", "jsonlint" }, jsonc = { "prettier" }, |
