Skip to content

Commit

Permalink
configs: add edraw
Browse files Browse the repository at this point in the history
  • Loading branch information
gudzpoz committed May 31, 2024
1 parent 9288959 commit b949bb0
Showing 1 changed file with 18 additions and 2 deletions.
20 changes: 18 additions & 2 deletions configs/.spacemacs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ This function should only modify configuration layer settings."
dotspacemacs-ask-for-lazy-installation t

;; List of additional paths where to look for configuration layers.
;; Paths must have a trailing slash (i.e. `~/.mycontribs/')
;; Paths must have a trailing slash (i.e. "~/.mycontribs/")
dotspacemacs-configuration-layer-path '()

;; List of configuration layers to load.
Expand Down Expand Up @@ -121,6 +121,7 @@ This function should only modify configuration layer settings."
:url "https://cdn.jsdelivr.net/gh/gudzpoz/cp2k@emacs-package-headers/tools/input_editing/emacs/cp2k-mode.el"))
dockerfile-mode
docker-compose-mode
(edraw :location (recipe :fetcher github :repo "misohena/el-easydraw"))
ellama
ement
emacs-everywhere
Expand Down Expand Up @@ -334,7 +335,9 @@ It should only modify the values of Spacemacs settings."
;; (default t)
dotspacemacs-colorize-cursor-according-to-state t

;; Default font or prioritized list of fonts. The `:size' can be specified as
;; Default font or prioritized list of fonts. This setting has no effect when
;; running Emacs in terminal. The font set here will be used for default and
;; fixed-pitch faces. The `:size' can be specified as
;; a non-negative integer (pixel size), or a floating-point (point size).
;; Point size is recommended, because it's device independent. (default 10.0)
dotspacemacs-default-font '("Sarasa Term SC Nerd"
Expand Down Expand Up @@ -415,6 +418,10 @@ It should only modify the values of Spacemacs settings."
;; Which-key frame position. Possible values are `right', `bottom' and
;; `right-then-bottom'. right-then-bottom tries to display the frame to the
;; right; if there is insufficient space it displays it at the bottom.
;; It is also possible to use a posframe with the following cons cell
;; `(posframe . position)' where position can be one of `center',
;; `top-center', `bottom-center', `top-left-corner', `top-right-corner',
;; `top-right-corner', `bottom-left-corner' or `bottom-right-corner'
;; (default 'bottom)
dotspacemacs-which-key-position 'bottom

Expand Down Expand Up @@ -653,6 +660,10 @@ If you are unsure, try setting them in `dotspacemacs/user-config' first."
(require 'cns nil t)
(global-cns-mode)

;; Server daemon
;; (setq server-use-tcp t)
;; (setq server-port 5172)

)


Expand Down Expand Up @@ -682,6 +693,11 @@ dump."
(setq org-pomodoro-clock-break t
org-pomodoro-manual-break t)

;; https://github.com/misohena/el-easydraw
(with-eval-after-load 'org
(require 'edraw-org)
(edraw-org-setup-default))

;; Org-journal
(setq org-journal-dir "~/Documents/Nutstore/Org-Mode/Journal")

Expand Down

0 comments on commit b949bb0

Please sign in to comment.