diff options
Diffstat (limited to '.config/emacs')
| -rw-r--r-- | .config/emacs/early-init.el | 4 | ||||
| -rw-r--r-- | .config/emacs/files.el | 2 | ||||
| m--------- | .config/emacs/lisp/proj | 0 | ||||
| -rw-r--r-- | .config/emacs/minibuffer.el | 2 | ||||
| -rw-r--r-- | .config/emacs/style.el | 2 | ||||
| -rw-r--r-- | .config/emacs/text-editing.el | 3 |
6 files changed, 9 insertions, 4 deletions
diff --git a/.config/emacs/early-init.el b/.config/emacs/early-init.el index b8c27fb..dd27ef2 100644 --- a/.config/emacs/early-init.el +++ b/.config/emacs/early-init.el @@ -39,10 +39,10 @@ (set-selection-coding-system 'utf-8) (prefer-coding-system 'utf-8) -;; fonts +;; fonts - https://github.com/thep0y/monaco-nerd-font/releases/tag/v0.2.2 (let ((mono-spaced-font "Monaco Nerd Font Mono") (proportionately-spaced-font "MonacoLigaturized Nerd Font")) - (set-face-attribute 'default nil :family mono-spaced-font :height 100) + (set-face-attribute 'default nil :family mono-spaced-font :height 105) (set-face-attribute 'fixed-pitch nil :family mono-spaced-font :height 1.0) (set-face-attribute 'variable-pitch nil :family proportionately-spaced-font :height 1.0)) diff --git a/.config/emacs/files.el b/.config/emacs/files.el index a60c5e5..4b55523 100644 --- a/.config/emacs/files.el +++ b/.config/emacs/files.el @@ -24,3 +24,5 @@ (dired-subtree-after-insert . nerd-icons-dired--refresh) :config (setq dired-subtree-use-backgrounds nil)) + +;; todo - make auto revert buffer actually work with subtree diff --git a/.config/emacs/lisp/proj b/.config/emacs/lisp/proj -Subproject fd3d705c32fc8e35e7f80d75c35fd950749a6e9 +Subproject 847a20360c7ef1affc730c6d8d626f923fe5894 diff --git a/.config/emacs/minibuffer.el b/.config/emacs/minibuffer.el index 7a90e85..b7b13af 100644 --- a/.config/emacs/minibuffer.el +++ b/.config/emacs/minibuffer.el @@ -58,7 +58,7 @@ :ensure t :custom (prescient-aggressive-file-save t) - (prescient-sort-length-enable nil) + (prescient-sort-length-enable t) ; testing this out (prescient-sort-full-matches-first t) (prescient-history-length 200) (prescient-frequency-decay 0.997) diff --git a/.config/emacs/style.el b/.config/emacs/style.el index 69a99a0..5141cd8 100644 --- a/.config/emacs/style.el +++ b/.config/emacs/style.el @@ -4,7 +4,7 @@ ;; theme (load-theme 'wombat) (custom-set-faces - '(default ((t (:inherit nil :stipple nil :background "#222323" :foreground "#f6f3e8" :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight normal :height 115 :width normal :family "Monaco")))) + '(default ((t (:inherit nil :stipple nil :background "#222323" :foreground "#f6f3e8" :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight normal :height 115 :width normal)))) '(highlight ((t (:underline nil)))) '(fringe ((t (:background "#222323")))) '(vertical-border ((t (:foreground "#303030")))) diff --git a/.config/emacs/text-editing.el b/.config/emacs/text-editing.el index beee68c..48f07c5 100644 --- a/.config/emacs/text-editing.el +++ b/.config/emacs/text-editing.el @@ -16,15 +16,18 @@ ;; mwim (use-package mwim + :ensure t :bind (("C-a" . mwim-beginning) ("C-e" . mwim-end-of-line))) ;; expand keybind (use-package expand-region + :ensure t :bind ("C-=" . er/expand-region)) ;; better comment keybind (use-package evil-nerd-commenter + :ensure t :bind ("M-;" . evilnc-comment-or-uncomment-lines)) ;; delete selected region when you type new text |
