diff options
| author | Grégoire Duchêne <gduchene@awhk.org> | 2020-07-04 23:03:47 +0100 |
|---|---|---|
| committer | Grégoire Duchêne <gduchene@awhk.org> | 2020-07-04 23:03:47 +0100 |
| commit | 37a5938a0fb4d04ce9684ba2cfc517cb8e947926 (patch) | |
| tree | 3eff2193578848e57eeae323a7365152d6eb2983 /dotfiles-darwin/emacs | |
| parent | 30944ac39d0121278e5e94b242549138c92035f4 (diff) | |
emacs: Add macOS-specific configuration
Diffstat (limited to 'dotfiles-darwin/emacs')
| -rw-r--r-- | dotfiles-darwin/emacs/init.el | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/dotfiles-darwin/emacs/init.el b/dotfiles-darwin/emacs/init.el new file mode 100644 index 0000000..bc709fa --- /dev/null +++ b/dotfiles-darwin/emacs/init.el @@ -0,0 +1,6 @@ +(when (display-graphic-p) + (setq mac-right-option-modifier 'none)) + +(let ((gnu-ls "/usr/local/bin/gls")) + (when (file-exists-p gnu-ls) + (setq insert-directory-program gnu-ls))) |
