aboutsummaryrefslogtreecommitdiffstats
path: root/doom-emacs/.doom.d/config.org
diff options
context:
space:
mode:
Diffstat (limited to 'doom-emacs/.doom.d/config.org')
-rw-r--r--doom-emacs/.doom.d/config.org50
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)