config changes
This commit is contained in:
parent
b4df8f3b50
commit
d8f685b1e0
3 changed files with 50 additions and 38 deletions
25
config.el
25
config.el
|
@ -67,11 +67,10 @@
|
|||
(after! vterm
|
||||
(setq-default vterm-shell (executable-find "fish"))
|
||||
(setq-default explicit-shell-file-name (executable-find "fish"))
|
||||
(setq vterm-kill-buffer-on-exit t))
|
||||
|
||||
(after! meow
|
||||
(meow-vterm-enable))
|
||||
|
||||
(setq vterm-kill-buffer-on-exit t)
|
||||
(after! meow
|
||||
(meow-vterm-enable))
|
||||
)
|
||||
|
||||
;; remove org agenda from the splash screen
|
||||
(assoc-delete-all "Open org-agenda" +doom-dashboard-menu-sections)
|
||||
|
@ -208,6 +207,22 @@
|
|||
|
||||
(set-popup-rule! "*sly-description*" :side 'right :size '0.52)
|
||||
|
||||
(use-package! ajrepl
|
||||
:after janet-mode
|
||||
:config
|
||||
(add-hook 'a-janet-mode-hook
|
||||
#'ajrepl-interaction-mode))
|
||||
|
||||
(after! lsp-mode
|
||||
(add-to-list 'lsp-language-id-configuration '(a-janet-mode . "janet"))
|
||||
(lsp-register-client (make-lsp-client :new-connection (lsp-stdio-connection "janet-lsp")
|
||||
:activation-fn (lsp-activate-on "janet")
|
||||
:server-id 'janet-ls)))
|
||||
|
||||
(after! lisp-markup
|
||||
(add-hook! 'lisp-mode 'lisp-markup-minor-mode))
|
||||
(add-to-list 'auto-mode-alist '("\\.lsx\\'" . lisp-mode))
|
||||
|
||||
;; adding supercollider path
|
||||
(setq exec-path (append exec-path '("/Applications/SuperCollider.app/Contents/MacOS/")))
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue