about summary refs log tree commit diff
path: root/emacs/.emacs.d/wpc/fonts.el
AgeCommit message (Collapse)AuthorFilesLines
2020-09-07 Increase the default size of my workstation fontWilliam Carroll1-1/+1
Consider moving some of this logic into my work-specific configuration.
2020-09-04 Enable font ligatures for Emacs 27!William Carroll1-0/+31
Now that Emacs is capable a rendering font ligatures, I defined a function to enable them in fonts.el. Everything works, and it's beautiful.
2020-09-02 Linting ElispWilliam Carroll1-1/+1
TL;DR: - Prefer cl-lib - Prefer spaces to tabs - Resolve various checkdoc complaints
2020-09-02 Add missing Elisp dependenciesWilliam Carroll1-0/+1
TL;DR: - Require cl-macs.el for modules using CL-style macros like `cl-defun` - Require struct.el for call to `struct-set!`
2020-09-01 More Elisp lintingWilliam Carroll1-39/+42
This should cover most of the remaining linting errors. After this, I expect fewer than ten linting errors.
2020-08-31 Lint string, macros.elWilliam Carroll1-2/+2
More of the same type of linting... basically preferring `namespace-` instead of `namespace/`.
2020-08-31 Lint prelude.elWilliam Carroll1-1/+1
This was a doozey because I use it everywhere. Is there a better way to globally rename things? Aye aye aye... computers, man!
2020-08-31 Lint maybe.elWilliam Carroll1-1/+1
This change had rippling implications.
2020-08-31 Remove keybinding logic from fonts.elWilliam Carroll1-16/+0
For two reasons: 1. I don't use these keybindings. 2. I'm trying to centralize all keybinding logic in keybindings.el.
2020-06-16 Prefer smaller default font size for laptopWilliam Carroll1-1/+1
I'll be working without an external monitor for the next few months, so I prefer this smaller size.
2020-04-02 Increase default font size for laptopWilliam Carroll1-1/+1
I'm working off of my laptop but I'm using my 4k monitor. The expression that sets `fonts/size` could be more sophisticated and detect this, but for now, I'm just bumping up the size.
2020-01-30 Move move .emacs.d out of configs/sharedWilliam Carroll1-0/+153
Moving all of my Emacs-related files into their own directory at the root of this repository.