This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;; .doom.d/config.el -*- lexical-binding: t; -*- | |
;; Place your private configuration here | |
;;Use custom font | |
(setq doom-font (font-spec :family "Droid Sans Mono" :size 17)) | |
;;Tighten which-key interval | |
(setq which-key-idle-delay 0.4) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;; .doom.d/config.el -*- lexical-binding: t; -*- | |
;; Place your private configuration here | |
;;Use custom font | |
(setq doom-font (font-spec :family "Droid Sans Mono" :size 17)) | |
;;Tighten which-key interval | |
(setq which-key-idle-delay 0.4) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;; .doom.d/config.el -*- lexical-binding: t; -*- | |
;; Place your private configuration here | |
;;Use custom font | |
(setq doom-font (font-spec :family "Droid Sans Mono" :size 17)) | |
;;Tighten which-key interval | |
(setq which-key-idle-delay 0.4) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;; .doom.d/config.el -*- lexical-binding: t; -*- | |
;; Place your private configuration here | |
;;Use custom font | |
(setq doom-font (font-spec :family "Droid Sans Mono" :size 17)) | |
;;Tighten which-key interval | |
(setq which-key-idle-delay 0.4) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;; .doom.d/config.el -*- lexical-binding: t; -*- | |
;; Place your private configuration here | |
;;Use custom font | |
(setq doom-font (font-spec :family "Droid Sans Mono" :size 17)) | |
;;Tighten which-key interval | |
(setq which-key-idle-delay 0.4) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; -*- no-byte-compile: t; -*- | |
;;; .doom.d/packages.el | |
;;; Examples: | |
;; (package! some-package) | |
;; (package! another-package :recipe (:host github :repo "username/repo")) | |
;; (package! builtin-package :disable t) | |
(package! org-super-agenda) | |
(package! markdown-preview-mode) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; -*- no-byte-compile: t; -*- | |
;;; .doom.d/packages.el | |
;;; Examples: | |
;; (package! some-package) | |
;; (package! another-package :recipe (:host github :repo "username/repo")) | |
;; (package! builtin-package :disable t) | |
(package! org-super-agenda) | |
(package! markdown-preview-mode) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;; .doom.d/config.el -*- lexical-binding: t; -*- | |
;; Place your private configuration here | |
;;Use custom font | |
(setq doom-font (font-spec :family "Droid Sans Mono" :size 17)) | |
;;Tighten which-key interval | |
(setq which-key-idle-delay 0.4) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;; .doom.d/config.el -*- lexical-binding: t; -*- | |
;; Place your private configuration here | |
;;Use custom font | |
(setq doom-font (font-spec :family "Droid Sans Mono" :size 17)) | |
;; macOS specific config |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## HOW TO DO DADGUM ENV VARS FOR UI AND SHELL APPS ON macOS: | |
# 1. If you want to OVERRIDE existing paths, prepend to existing path in ~/.zprofile | |
# 2. If you want to ADD NEW paths that do not need to override system paths, append to existing path in ~/.zshenv | |
#Path to your oh-my-zsh installation. | |
export ZSH=~/.oh-my-zsh | |
export FIREFOX_BIN=/Applications/FirefoxDeveloperEdition.app/Contents/MacOS/firefox-bin | |
alias emacs="emacsclient -nw" | |
alias emc="emacsclient -n" |