dotfiles

Personal dotfiles
git clone https://git.bracken.jp/dotfiles.git
Log | Files | Refs | LICENSE

beancount.lua (154B)


      1 vim.api.nvim_create_autocmd("BufWritePost", {
      2   pattern = "*.beancount",
      3   command = "silent !bean-format % -o %",
      4   desc = "Run bean-format on save",
      5 })