Skip to content

Commit

Permalink
bla
Browse files Browse the repository at this point in the history
  • Loading branch information
rafamoreira committed Jan 2, 2023
1 parent ad1fb35 commit 57dbbf1
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion emacs/.emacs.d/.gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/auto-save-list
/auto-saves
/auto-saves/*
/backup
/.cache
/.lsp-session-v1
Expand Down
9 changes: 9 additions & 0 deletions emacs/.emacs.d/init.el
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@
(add-to-list 'auto-mode-alist '("\\.yml\\'" . yaml-mode))
)


(use-package evil
:straight t
:config
Expand All @@ -82,6 +83,13 @@
(global-wakatime-mode)
)

(use-package beancount
:straight (el-patch :type git :host github :repo "beancount/beancount-mode")
:config
(add-to-list 'auto-mode-alist '("\\.beancount\\'" . beancount-mode))
)


;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; visual ;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Expand Down Expand Up @@ -134,6 +142,7 @@
(use-package ledger-mode
:straight t
:config
(add-to-list 'auto-mode-alist '("\\.journal\\'" . ledger-mode))
(add-hook 'ledger-mode-hook
(lambda ()
(setq-local tab-always-indent 'complete)
Expand Down

0 comments on commit 57dbbf1

Please sign in to comment.