summaryrefslogtreecommitdiff
path: root/dot-config/nvim-old/lua/plugins/hledger.lua
blob: 240d0a68301bd099c3a27ecb24a592d087324c2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
-- add language support for hledger
-- based on options from https://www.lazyvim.org/extras/lang/astro

return {
  {
    "nvim-treesitter/nvim-treesitter",
    opts = { ensure_installed = { "ledger" } },
  },

  {
    "stevearc/conform.nvim",
    opts = {
      formatters_by_ft = {
        ledger = { "hledger-fmt" },
      },
    },
  },
}