which-key in emacs

This commit is contained in:
Charlotte Van Petegem 2021-03-13 14:39:26 +01:00
parent f8d37c2dc3
commit 4c46b43c6f
No known key found for this signature in database
GPG key ID: 019E764B7184435A

View file

@ -53,12 +53,12 @@
enable = true; enable = true;
mode = [ ''"\\.journal\\'"'' ]; mode = [ ''"\\.journal\\'"'' ];
config = '' config = ''
(setq ledger-binary-path "hledger") (setq ledger-binary-path "hledger"
(setq ledger-highlight-xact-under-point nil) ledger-highlight-xact-under-point nil
(setq ledger-post-account-alignment-column 4) ledger-post-account-alignment-column 4
(setq ledger-post-amount-alignment-at :decimal) ledger-post-amount-alignment-at :decimal
(setq ledger-post-amount-alignment-column 59) ledger-post-amount-alignment-column 59
(setq ledger-post-auto-align t) ledger-post-auto-align t)
''; '';
}; };
lsp-mode = { lsp-mode = {
@ -106,6 +106,11 @@
enable = true; enable = true;
mode = [ ''"\\.html\\.erb\\'"'' ]; mode = [ ''"\\.html\\.erb\\'"'' ];
}; };
which-key = {
enable = true;
diminish = [ "which-key-mode" ];
config = "(which-key-mode)";
};
}; };
}; };
}; };