diff options
Diffstat (limited to '.config')
| -rw-r--r-- | .config/.gitignore-template | 5 | ||||
| -rw-r--r-- | .config/Brewfile | 2 | ||||
| -rw-r--r-- | .config/nvim/lazy-lock.json | 3 | ||||
| -rw-r--r-- | .config/nvim/lua/config/plugins/conform.lua | 8 |
4 files changed, 18 insertions, 0 deletions
diff --git a/.config/.gitignore-template b/.config/.gitignore-template index 815c548..7771a4b 100644 --- a/.config/.gitignore-template +++ b/.config/.gitignore-template @@ -24,3 +24,8 @@ uv.lock ./.ipynb_checkpoints/ **/build/ +.idea/ +bin/ +obj/ + + diff --git a/.config/Brewfile b/.config/Brewfile index 98b0ddc..ae2d0ef 100644 --- a/.config/Brewfile +++ b/.config/Brewfile @@ -31,6 +31,7 @@ brew "viu" brew "chafa" brew "7-zip" brew "ydiff" +brew "dotnet" cask "visual-studio-code" cask "google-chrome" @@ -55,3 +56,4 @@ cask "font-iosevka-term-nerd-font" cask "microsoft-teams" cask "bambu-studio" cask "affinity" +cask "rider" diff --git a/.config/nvim/lazy-lock.json b/.config/nvim/lazy-lock.json index 3d12f22..2130986 100644 --- a/.config/nvim/lazy-lock.json +++ b/.config/nvim/lazy-lock.json @@ -6,6 +6,7 @@ "bullets.vim": { "branch": "master", "commit": "89294b8930e660936374fb763ac48a1ac51dd29c" }, "cmp-sql": { "branch": "master", "commit": "54193ac99e3855c6ffaa36f83a7c50213df03157" }, "conform.nvim": { "branch": "master", "commit": "c2526f1cde528a66e086ab1668e996d162c75f4f" }, + "csharp.nvim": { "branch": "main", "commit": "e44e275dabbcfc188ce1a5f504aad778e917c814" }, "fidget.nvim": { "branch": "main", "commit": "7fa433a83118a70fe24c1ce88d5f0bd3453c0970" }, "flash.nvim": { "branch": "main", "commit": "fcea7ff883235d9024dc41e638f164a450c14ca2" }, "friendly-snippets": { "branch": "main", "commit": "6cd7280adead7f586db6fccbd15d2cac7e2188b9" }, @@ -24,6 +25,7 @@ "nord.nvim": { "branch": "master", "commit": "80c1e5321505aeb22b7a9f23eb82f1e193c12470" }, "nui.nvim": { "branch": "main", "commit": "de740991c12411b663994b2860f1a4fd0937c130" }, "nvim-colorizer.lua": { "branch": "master", "commit": "338409dd8a6ed74767bad3eb5269f1b903ffb3cf" }, + "nvim-dap": { "branch": "master", "commit": "b516f20b487b0ac6a281e376dfac1d16b5040041" }, "nvim-lspconfig": { "branch": "master", "commit": "44acfe887d4056f704ccc4f17513ed41c9e2b2e6" }, "nvim-osc52": { "branch": "main", "commit": "04cfaba1865ae5c53b6f887c3ca7304973824fb2" }, "nvim-treesitter": { "branch": "main", "commit": "dc42c209f3820bdfaae0956f15de29689aa6b451" }, @@ -35,6 +37,7 @@ "render-markdown.nvim": { "branch": "main", "commit": "48b4175dbca8439d30c1f52231cbe5a712c8f9d9" }, "rustaceanvim": { "branch": "master", "commit": "88575b98bb9937fb9983ddec5e532b67e75ce677" }, "snacks.nvim": { "branch": "main", "commit": "fe7cfe9800a182274d0f868a74b7263b8c0c020b" }, + "structlog.nvim": { "branch": "main", "commit": "45b26a2b1036bb93c0e83f4225e85ab3cee8f476" }, "typst-preview.nvim": { "branch": "master", "commit": "e123a7ab64e52d836e00dea9251e85b201f38966" }, "undotree": { "branch": "master", "commit": "d8f99084d98c32f651860eb0baaf89759f91debc" }, "uv.nvim": { "branch": "main", "commit": "b0bce1b61584fde99c316aa0587a4996c52df206" }, diff --git a/.config/nvim/lua/config/plugins/conform.lua b/.config/nvim/lua/config/plugins/conform.lua index 55660e9..5747200 100644 --- a/.config/nvim/lua/config/plugins/conform.lua +++ b/.config/nvim/lua/config/plugins/conform.lua @@ -23,10 +23,18 @@ return { css = { "prettierd", "prettier", stop_after_first = true }, html = { "prettierd", "prettier", stop_after_first = true }, typst = { "prettypst" }, + xml = { "xmlformatter" }, }, format_on_save = { timeout_ms = 500, lsp_format = "fallback", }, + formatters = { + xmlformat = { + command = "xmlformat", + args = { "--selfclose", "-" }, + stdin = true, + }, + }, }, } |
