summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* ec: Add the ‘ec’ scriptThomas Voss 2023-08-141-0/+15
|
* emacs: Add more mu4e contextsThomas Voss 2023-08-141-2/+41
|
* emacs: Fix sending email with mu4eThomas Voss 2023-08-141-1/+6
|
* emacs: Use the ‘beframe’ packageThomas Voss 2023-08-141-0/+20
|
* emacs: Use ‘savehist-mode’Thomas Voss 2023-08-141-0/+11
|
* emacs: Add ‘mm-after-load-theme-hook’Thomas Voss 2023-08-131-232/+251
|
* emacs: Use new syntax for ‘mu4e-maildir-shortcuts’Thomas Voss 2023-08-131-5/+5
|
* emacs: Fix maildir folder pathsThomas Voss 2023-08-131-9/+9
|
* emacs: ‘after-make-frame-functions’ hooks take argThomas Voss 2023-08-131-1/+1
|
* emacs: Add basic mu4e configThomas Voss 2023-08-131-0/+34
|
* emacs: Use ‘set’ for variable symbolThomas Voss 2023-08-131-1/+1
|
* emacs: Only add ts hook if mode existsThomas Voss 2023-08-131-3/+3
|
* emacs: Add ‘emmet-mode’Thomas Voss 2023-08-131-0/+12
|
* emacs: Fix ‘css-indent-offset’ variable nameThomas Voss 2023-08-131-1/+1
|
* emacs: Don’t remove ‘mm-set-fonts’ hookThomas Voss 2023-08-131-7/+1
|
* waybar: Add waybar configurationThomas Voss 2023-08-134-0/+173
|
* emacs: ‘fill-column’ is buffer-localThomas Voss 2023-08-121-1/+1
|
* emacs: Set Ysabeau as the proportional fontThomas Voss 2023-08-121-3/+4
|
* emacs: Start ‘magit-todos-mode’Thomas Voss 2023-08-121-1/+2
|
* msmtp: Add msmtp configurationThomas Voss 2023-08-111-0/+28
|
* isync: Add isync configurationThomas Voss 2023-08-111-0/+61
|
* mako: Add mako configurationThomas Voss 2023-08-111-0/+7
|
* emacs: Configure ‘auto-fill-mode’Thomas Voss 2023-08-111-0/+13
|
* readline: Change cursor shape based on vi-modeThomas Voss 2023-08-111-0/+8
| | | | | | This commit causes the cursor to be a block when in normal mode and a pipe when in insert mode for all applications using GNU readline. I also just went ahead and set the default mode to vi because I can.
* readline: Add readline configurationThomas Voss 2023-08-111-0/+1
|
* paru: Add paru configurationThomas Voss 2023-08-111-0/+14
|
* htop: Add htop configurationThomas Voss 2023-08-111-0/+61
|
* git: Add git configurationThomas Voss 2023-08-111-0/+74
|
* emacs: Add a header because I canThomas Voss 2023-08-111-0/+3
|
* emacs: Enable ‘org-indent-mode’ in ‘org-mode’Thomas Voss 2023-08-111-0/+13
|
* emacs: Keep fighting with indentationThomas Voss 2023-08-111-5/+5
|
* emacs: Fix typo in docstringThomas Voss 2023-08-111-1/+1
|
* emacs: Make use of ‘(pure t)’ in ‘declare’Thomas Voss 2023-08-111-3/+3
|
* emacs: Assert if ts-mode exists before adding hookThomas Voss 2023-08-111-1/+3
|
* emacs: Wrap ts-mode in ‘mm-mode-to-hook’Thomas Voss 2023-08-111-1/+1
| | | | | When setting hooks, we need to _actually get the hook_. This was just a brain-fart on my end.
* emacs: Fix docstringThomas Voss 2023-08-111-1/+1
|
* emacs: Ignore #file.name#-style filesThomas Voss 2023-08-111-0/+1
|
* emacs: Remove a commentThomas Voss 2023-08-111-1/+0
|
* emacs: Indent config with spaces instead of tabsThomas Voss 2023-08-111-109/+109
|
* emacs: Fix bugs in ‘mm-set-indentation-settings’Thomas Voss 2023-08-111-26/+33
| | | | | The logic in this function was just… totally wrong. I’ve gone ahead and fixed that now.
* emacs: Limit ‘company’ to ‘conf- and prog-mode’Thomas Voss 2023-08-111-3/+2
|
* emacs: Do better backupsThomas Voss 2023-08-111-3/+15
|
* emacs: Flatten ‘Miscellaneous Settings’Thomas Voss 2023-08-111-2/+1
|
* xdg: Add XDG configurationsThomas Voss 2023-08-112-0/+16
|
* xdg: Set Firefox to be the default browserThomas Voss 2023-08-111-0/+7
| | | | | | Despite $BROWSER being set to ‘firefox’, ‘xdg-open’ still uses Chromium to open links by default. I don’t want that as I only use Chromium for testing purposes.
* emacs: Add missing ‘orderless’ configurationThomas Voss 2023-08-111-0/+10
| | | | | For some reason this code block was just… missing. I must have accidentally deleted it before the genesis commit.
* emacs: Disable tab indentation for ‘org-mode’Thomas Voss 2023-08-111-0/+1
|
* emacs: Use default indent-settings if none givenThomas Voss 2023-08-111-15/+8
| | | | | | Now you can totally omit ‘:width’ or ‘:tabs’ when setting ‘mm-indentation-settings’. If they’re unset then we default to the default settings of ‘tab-width’ and ‘indent-tabs-mode’.
* emacs: Define ‘backup-directory-alist’Thomas Voss 2023-08-111-3/+7
| | | | This should assist in getting all those *~ files out of the way
* emacs: Use ‘x’ instead of ‘_’ in ‘mm-for-each’Thomas Voss 2023-08-111-7/+7
| | | | | Emacs will issue warnings if I actually use the ‘_’ variable since it’s meant to be used for unused vars. I did not know that lol.