From 4033f5fe94241ca5fa2d7ba789446ff510eea407 Mon Sep 17 00:00:00 2001 From: cscherr Date: Mon, 19 May 2025 11:26:25 +0200 Subject: [PATCH 1/4] fmt typst --- lua/custom/plugins/init.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/lua/custom/plugins/init.lua b/lua/custom/plugins/init.lua index 28422b0..45c8b8c 100644 --- a/lua/custom/plugins/init.lua +++ b/lua/custom/plugins/init.lua @@ -38,6 +38,7 @@ return { ['_'] = { 'prettier' }, rust = { 'rust-analyzer' }, lua = { 'stylua' }, + typst = { 'typstyle' }, json = { 'jq' }, -- rust = { 'rustfmt' }, -- does not need one with the lsp there c = { 'clang-format' }, From a2f6403fd51923467b2f853320746182abb65fc6 Mon Sep 17 00:00:00 2001 From: cscherr Date: Mon, 19 May 2025 11:26:32 +0200 Subject: [PATCH 2/4] remove typst autocmd --- lua/custom/autocmds.lua | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/lua/custom/autocmds.lua b/lua/custom/autocmds.lua index 1c55b87..0a42e1f 100644 --- a/lua/custom/autocmds.lua +++ b/lua/custom/autocmds.lua @@ -90,14 +90,3 @@ vim.api.nvim_create_autocmd('ColorScheme', { vim.cmd [[highlight Comment gui=NONE]] -- no italics for comments end, }) - --- pin main.typ for typst projects -vim.api.nvim_create_autocmd('FileType', { - group = augroup, - pattern = { - 'typst', - }, - callback = function() - print "Don't forget to pin the main typst file for multifile support: tp" - end, -}) From 37ff8d6fdba7beba54ed4acfb6c29b00460feca8 Mon Sep 17 00:00:00 2001 From: cscherr Date: Mon, 19 May 2025 11:26:33 +0200 Subject: [PATCH 3/4] spell --- spell/en.utf-8.add | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/spell/en.utf-8.add b/spell/en.utf-8.add index 986dda8..c021cbf 100644 --- a/spell/en.utf-8.add +++ b/spell/en.utf-8.add @@ -535,3 +535,11 @@ reconnections Grischtoffshofian Schutzteinheit Baumaßnahmen +STMicroelectronics +Nucleo +STM32 +ohneweiteres/! +STM32CubeIDE +vor +Möglich/! +Systemprogrammiesprachen From 58a6274c3ce43e5cc738400a3700d31649d0af85 Mon Sep 17 00:00:00 2001 From: cscherr Date: Mon, 19 May 2025 16:43:05 +0200 Subject: [PATCH 4/4] add taplo --- lua/custom/plugins/configs/lsp.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/lua/custom/plugins/configs/lsp.lua b/lua/custom/plugins/configs/lsp.lua index 8cd6a60..9f09cf5 100644 --- a/lua/custom/plugins/configs/lsp.lua +++ b/lua/custom/plugins/configs/lsp.lua @@ -154,6 +154,7 @@ local servers = { end, }, html = {}, + taplo = {}, cssls = {}, ts_ls = {}, clangd = {},