Skip to content

Commit

Permalink
Highlight Org config file ,comments(projectile, consult-theme)
Browse files Browse the repository at this point in the history
  • Loading branch information
MiniApollo committed Feb 27, 2024
1 parent ad2cb3d commit 7dffed3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Kickstart.emacs is **not** a distribution. <br>
It's a template for your own configuration.

This config is:
- A single file org document (with examples of moving to multi-file)
- A single file **org document** (with examples of moving to multi-file)
- Modular and easily configurable
- Documented describing its purpuse

Expand Down
5 changes: 3 additions & 2 deletions config.org
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
;; Kickstart.emacs is *not* a distribution.
;; It's a template for your own configuration.

;; It is recommeded to configure it from the config.org file.
;; It is *recommeded* to configure it from the **config.org** file.
;; The goal is that you read every line, top-to-bottom, understand
;; what your configuration is doing, and modify it to suit your needs.

Expand Down Expand Up @@ -252,6 +252,7 @@ To search and replace, use query-replace-regexp to replace one by one C-M-% (SPC
* Appearance
** Set Theme
Set gruvbox theme, if you want some themes try out doom-themes.
Use consult-theme to easily try out themes (*Epilepsy* Warning).
#+begin_src emacs-lisp
(use-package gruvbox-theme
:config
Expand Down Expand Up @@ -311,7 +312,7 @@ Project interaction library for Emacs.
(projectile-mode)
:custom
(projectile-run-use-comint-mode t) ;; Interactive run dialog when running projects inside emacs (like giving input)
(projectile-switch-project-action #'projectile-dired)
(projectile-switch-project-action #'projectile-dired) ;; Open dired when switching to a project
(projectile-project-search-path '("~/projects/" "~/work/" ("~/github" . 1)))) ;; . 1 means only search the first subdirectory level for projects
;; Use Bookmarks for smaller, not standard projects
#+end_src
Expand Down
4 changes: 2 additions & 2 deletions init.el
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
;; Kickstart.emacs is *not* a distribution.
;; It's a template for your own configuration.

;; It is recommeded to configure it from the config.org file.
;; It is *recommeded* to configure it from the **config.org** file.
;; The goal is that you read every line, top-to-bottom, understand
;; what your configuration is doing, and modify it to suit your needs.

Expand Down Expand Up @@ -193,7 +193,7 @@
(projectile-mode)
:custom
(projectile-run-use-comint-mode t) ;; Interactive run dialog when running projects inside emacs (like giving input)
(projectile-switch-project-action #'projectile-dired)
(projectile-switch-project-action #'projectile-dired) ;; Open dired when switching to a project
(projectile-project-search-path '("~/projects/" "~/work/" ("~/github" . 1)))) ;; . 1 means only search the first subdirectory level for projects
;; Use Bookmarks for smaller, not standard projects

Expand Down

0 comments on commit 7dffed3

Please sign in to comment.