aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorLibravatar sommerfeld <[email protected]>2026-04-17 10:52:56 +0100
committerLibravatar sommerfeld <[email protected]>2026-04-17 10:52:56 +0100
commit32315aae730744e9ab037c7e7b776e9fb3834388 (patch)
tree64996a1a0f7e8383381ac0177e6e11ec95e26b86
parent2ee3a4728031d7c3fe1039416ac1e9837059c8fe (diff)
downloaddotfiles-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".
-rw-r--r--home/.config/nvim/lua/custom/plugins/lsp.lua2
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" },