waybar, swaylock, swayfx, and nvim plugins

This commit is contained in:
2025-09-01 12:10:45 -07:00
parent d38aa180bb
commit 9fbf3bc8c1
9 changed files with 77 additions and 15 deletions

View File

@@ -0,0 +1,19 @@
return {
'stevearc/conform.nvim',
opts = {},
config = function ()
require("conform").setup({
formatters_by_ft = {
tex = { "latexindent" },
--lua = { "stylua" },
-- Conform will run multiple formatters sequentially
--python = { "isort", "black" },
-- You can customize some of the format options for the filetype (:help conform.format)
--rust = { "rustfmt", lsp_format = "fallback" },
-- Conform will run the first available formatter
--javascript = { "prettierd", "prettier", stop_after_first = true },
},
})
end
}