openscad
(with openscad-mode
for Emacs)
This commit is contained in:
parent
5ec83521ea
commit
68eace4a44
4 changed files with 8 additions and 1 deletions
|
@ -8,10 +8,10 @@ emacsWithPackages (
|
|||
with epkgs.melpaStablePackages; [ ]
|
||||
) ++ (
|
||||
with epkgs.melpaPackages; [
|
||||
# dirvish
|
||||
all-the-icons
|
||||
company
|
||||
dap-mode
|
||||
# dirvish
|
||||
doom-modeline
|
||||
evil
|
||||
evil-collection
|
||||
|
@ -39,6 +39,7 @@ emacsWithPackages (
|
|||
purescript-mode
|
||||
rainbow-delimiters
|
||||
rainbow-identifiers
|
||||
scad-mode
|
||||
sudo-utils
|
||||
treemacs
|
||||
treemacs-evil
|
||||
|
|
|
@ -26,6 +26,7 @@
|
|||
digikam
|
||||
rawtherapee
|
||||
freecad
|
||||
openscad
|
||||
deploy-rs.deploy-rs
|
||||
] ++
|
||||
(if !stdenv.hostPlatform.isAarch64 then [ wineWowPackages.full ] else [ ])
|
||||
|
|
4
users/profiles/emacs/emacs.d/config/config-scad.el
Normal file
4
users/profiles/emacs/emacs.d/config/config-scad.el
Normal file
|
@ -0,0 +1,4 @@
|
|||
(use-package scad-mode
|
||||
:mode "\\.scad\\'")
|
||||
|
||||
(provide 'config-scad)
|
|
@ -26,5 +26,6 @@ Return nil if COMMAND is not found anywhere in `exec-path'."
|
|||
(require 'config-spelling)
|
||||
(require 'config-nix)
|
||||
(require 'config-purescript)
|
||||
(require 'config-scad)
|
||||
|
||||
(server-start)
|
||||
|
|
Loading…
Add table
Reference in a new issue