This commit is contained in:
Matt Nish-Lapidus 2023-09-20 09:32:32 -04:00
parent 1a4fcfcd0b
commit 8bd123ef11
5 changed files with 20 additions and 14 deletions

View file

@ -27,7 +27,9 @@
;; - add major mode icon
(after! doom-modeline
(setq doom-modeline-persp-name t
doom-modeline-major-mode-icon t))
doom-modeline-major-mode-icon t)
(setq doom-modeline-total-line-number t))
;; set default frame size on launch
(setq default-frame-alist '( (left . 0) (top . 0) (height . 48) (width . 160) ))
@ -123,7 +125,7 @@
"s-M-<left>" 'centaur-tabs-backward))
;; use kitty for terminal-here
(setq terminal-here-mac-terminal-command '("kitty"))
(setq terminal-here-mac-terminal-command '("kitty" "@" "launch" "--type" "tab"))
;; set project paths and ignore buffers
(setq projectile-project-search-path '(("~/Source" . 2)))
@ -147,7 +149,7 @@
;; better completions for sly
(after! sly
(setq sly-lisp-implementations
'((sbcl ("sbcl" "--dynamic-space-size" "4000"))
'((sbcl ("sbcl" "--dynamic-space-size" "10000"))
(ciel ("sbcl" "--core" "/Users/emenel/quicklisp/local-projects/CIEL/ciel-core" "--eval" "(in-package :ciel-user)" "--dynamic-space-size" "2600"))))
(setq sly-default-lisp 'sbcl)
(setq sly-complete-symbol-function 'sly-flex-completions))