diff options
| author | Peter Son Struschka <me@peter-struschka.com> | 2020-02-02 12:50:32 +0800 |
|---|---|---|
| committer | Peter Son Struschka <me@peter-struschka.com> | 2020-02-02 12:50:32 +0800 |
| commit | f2b18aab5a84d04a36f4194473680ad70bdb5578 (patch) | |
| tree | e9db24237556f25832811d224bcb7898f22d5d1a /doom-emacs/.doom.d/config.org | |
| parent | 2bb9010d2e613206ce3d476dbea81eb9a56f3c66 (diff) | |
| download | dotfiles-f2b18aab5a84d04a36f4194473680ad70bdb5578.tar.gz dotfiles-f2b18aab5a84d04a36f4194473680ad70bdb5578.tar.bz2 dotfiles-f2b18aab5a84d04a36f4194473680ad70bdb5578.tar.lz dotfiles-f2b18aab5a84d04a36f4194473680ad70bdb5578.tar.xz dotfiles-f2b18aab5a84d04a36f4194473680ad70bdb5578.tar.zst dotfiles-f2b18aab5a84d04a36f4194473680ad70bdb5578.zip | |
script to find and edit config files
Diffstat (limited to 'doom-emacs/.doom.d/config.org')
| -rw-r--r-- | doom-emacs/.doom.d/config.org | 50 |
1 files changed, 25 insertions, 25 deletions
diff --git a/doom-emacs/.doom.d/config.org b/doom-emacs/.doom.d/config.org index bffa946..f3ada01 100644 --- a/doom-emacs/.doom.d/config.org +++ b/doom-emacs/.doom.d/config.org @@ -3,15 +3,15 @@ * Font settings #+BEGIN_SRC emacs-lisp (setq - doom-font (font-spec :family "Source Code Pro" :size 20) - doom-big-font (font-spec :family "Source Code Pro" :size 36) - doom-variable-pitch-font (font-spec :family "Source Sans Pro" :size 18)) + doom-font (font-spec :family "Fira Code" :size 14) + doom-big-font (font-spec :family "Fira Code" :size 24) + doom-variable-pitch-font (font-spec :family "Fira Code" :size 16)) #+END_SRC * Projectile Projectile Path #+BEGIN_SRC emacs-lisp -(setq projectile-project-search-path '("~/repos/" "~/Documents/Work/" "~/code")) +(setq projectile-project-search-path '("~/Documents/Work" "~/code")) #+END_SRC * Relative line numbers @@ -55,7 +55,7 @@ Org capture Org Super Agenda #+BEGIN_SRC emacs-lisp -(def-package! org-super-agenda +(use-package! org-super-agenda :after org-agenda :init (setq org-super-agenda-groups '((:name "Today" @@ -89,25 +89,25 @@ Org Super Agenda #+END_SRC * Leader keys #+BEGIN_SRC emacs-lisp -(map! :leader - (:prefix-map ("/" . "search")) - (:when (featurep! :ui workspaces) - (:prefix-map ("TAB" . "workspace"))) - (:prefix-map ("b" . "buffer")) - (:prefix-map ("c" . "code")) - (:prefix-map ("f" . "file")) - (:prefix-map ("g" . "git")) - (:prefix-map ("i" . "insert")) - (:prefix-map ("n" . "notes")) - (:prefix-map ("o" . "open") - (:prefix-map ("p" . "project")) - (:prefix-map ("q" . "session")) - (:when (featurep! :editor upload) - (:prefix-map ("r" . "remote"))) - (:when (featurep! :editor snipets) - (:prefix-map ("s" . "snippets"))) - (:prefix-map ("t" . "toggle") - :desc "Toggle imenu-list" "m" #'imenu-list-smart-toggle))) +;;(map! :leader +;; (:prefix-map ("/" . "search")) +;; (:when (featurep! :ui workspaces) +;; (:prefix-map ("TAB" . "workspace"))) +;; (:prefix-map ("b" . "buffer")) +;; (:prefix-map ("c" . "code")) +;; (:prefix-map ("f" . "file")) +;; (:prefix-map ("g" . "git")) +;; (:prefix-map ("i" . "insert")) +;; (:prefix-map ("n" . "notes")) +;; (:prefix-map ("o" . "open") +;; (:prefix-map ("p" . "project")) +;; (:prefix-map ("q" . "session")) +;; (:when (featurep! :editor upload) +;; (:prefix-map ("r" . "remote"))) +;; (:when (featurep! :editor snipets) +;; (:prefix-map ("s" . "snippets"))) +;; (:prefix-map ("t" . "toggle") +;; :desc "Toggle imenu-list" "m" #'imenu-list-smart-toggle))) #+END_SRC * Dired Do what I mean target allows dired to use window context for copying and moving @@ -117,7 +117,7 @@ Do what I mean target allows dired to use window context for copying and moving * Laguages Typescript #+BEGIN_SRC emacs-lisp -(def-package! tide +(use-package! tide :after (typescript-mode company flycheck) :hook ((typescript-mode . tide-setup) (typescript-mode . tide-hl-identifier-mode) |
