update

Changed files
+10 -9
home
emacs
nvim
+6
home/emacs/config/ledger.el
···
+
(require 'ledger-mode)
+
(setq ledger-post-amount-alignment-column 52)
+
(setq ledger-default-date-format ledger-iso-date-format)
+
(setq ledger-post-account-alignment-column 4)
+
(setq ledger-reconcile-default-commodity '£)
+
(setq tab-always-indent 'complete)
+1 -6
home/emacs/init.el
···
(load "appearance")
(load "save")
(load "email")
+
(load "ledger")
;; (setq interprogram-cut-function nil)
;; (setq interprogram-paste-function nil)
(require 'helm)
(helm-mode 1)
-
-
(require 'ledger-mode)
-
(setq ledger-post-amount-alignment-column 52)
-
(setq ledger-default-date-format ledger-iso-date-format)
-
(setq ledger-post-account-alignment-column 4)
-
(setq ledger-reconcile-default-commodity '£)
(setq-default truncate-lines t)
+3 -3
home/nvim/init.lua
···
local function recursive_accounts()
return sn(nil, {
-
t({ '', ' ' }), i(1, 'Account'), f(amount_spacing, { 1, 2 }),
+
t({ '', ' ' }), i(1, 'Account'), f(amount_spacing, { 1, 2 }),
c(2, {
t(''),
sn(nil, { i(1, '£') })
···
s('ledger', {
i(1, f(date_input)), t(' '), i(2, 'Description'),
c(3, {
-
sn(nil, { t({ '', ' ; ' }), i(1, 'Comment') }),
+
sn(nil, { t({ '', ' ; ' }), i(1, 'Comment') }),
t(''),
}),
-
t({ '', ' ' }), i(4, 'Account'), f(amount_spacing, { 4, 5 }),
+
t({ '', ' ' }), i(4, 'Account'), f(amount_spacing, { 4, 5 }),
c(5, {
sn(nil, { i(1, '£') }),
t(''),