-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
57 additions
and
5 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,8 +2,8 @@ | |
user-mail-address "[email protected]") | ||
|
||
(setq doom-font (font-spec :family "FiraCode Nerd Font" :size 14 :weight 'light) | ||
doom-big-font (font-spec :family "FiraCode Nerd Font" :size 28 :weight 'normal) | ||
doom-unicode-font (font-spec :family "FiraCode Nerd Font" :size 14 :weight 'normal) | ||
doom-big-font (font-spec :family "FiraCode Nerd Font" :size 28 :weight 'light) | ||
doom-unicode-font (font-spec :family "FiraCode Nerd Font" :size 14 :weight 'light) | ||
doom-variable-pitch-font (font-spec :family "DejaVu Serif" :size 16 :weight 'normal)) | ||
|
||
(setq display-line-numbers-type 'relative) | ||
|
@@ -14,6 +14,8 @@ | |
|
||
(setq frame-title-format "%b - Emacs") | ||
|
||
(setenv "PASSWORD_STORE_DIR" "~/.local/share/password-store") | ||
|
||
(defun add-hooks (hook-list function) | ||
"Add FUNCTION to all hooks in HOOK-LIST." | ||
(dolist (hook hook-list) | ||
|
@@ -580,6 +582,18 @@ for what debugger to use. If the prefix ARG is set, prompt anyway." | |
|
||
(spacious-padding-mode 1) | ||
|
||
(when (featurep! :checkers syntax +childframe) | ||
(defun flycheck-posframe-monitor-post-command () | ||
(when (not (flycheck-posframe-check-position)) | ||
(posframe-hide flycheck-posframe-buffer))) | ||
|
||
(defun fix-flycheck-posframe-not-hide-immediately () | ||
(cond (flycheck-posframe-mode | ||
(add-hook 'post-command-hook 'flycheck-posframe-monitor-post-command nil t)) | ||
((not flycheck-posframe-mode) | ||
(remove-hook 'post-command-hook 'flycheck-posframe-monitor-post-command t)))) | ||
(add-hook! flycheck-posframe-mode #'fix-flycheck-posframe-not-hide-immediately)) | ||
|
||
;; (define-key ivy-minibuffer-map (kbd "TAB") 'ivy-partial) | ||
;; (define-key ivy-minibuffer-map (kbd "<return>") 'ivy-alt-done) | ||
|
||
|
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,8 @@ | |
|
||
(package! org-modern) | ||
|
||
(package! ob-typescript) | ||
|
||
(package! org-fragtog) | ||
|
||
(unpin! org-roam) | ||
|
This file contains 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