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.melpaStablePackages; [ ]
|
||||||
) ++ (
|
) ++ (
|
||||||
with epkgs.melpaPackages; [
|
with epkgs.melpaPackages; [
|
||||||
|
# dirvish
|
||||||
all-the-icons
|
all-the-icons
|
||||||
company
|
company
|
||||||
dap-mode
|
dap-mode
|
||||||
# dirvish
|
|
||||||
doom-modeline
|
doom-modeline
|
||||||
evil
|
evil
|
||||||
evil-collection
|
evil-collection
|
||||||
|
@ -39,6 +39,7 @@ emacsWithPackages (
|
||||||
purescript-mode
|
purescript-mode
|
||||||
rainbow-delimiters
|
rainbow-delimiters
|
||||||
rainbow-identifiers
|
rainbow-identifiers
|
||||||
|
scad-mode
|
||||||
sudo-utils
|
sudo-utils
|
||||||
treemacs
|
treemacs
|
||||||
treemacs-evil
|
treemacs-evil
|
||||||
|
|
|
@ -26,6 +26,7 @@
|
||||||
digikam
|
digikam
|
||||||
rawtherapee
|
rawtherapee
|
||||||
freecad
|
freecad
|
||||||
|
openscad
|
||||||
deploy-rs.deploy-rs
|
deploy-rs.deploy-rs
|
||||||
] ++
|
] ++
|
||||||
(if !stdenv.hostPlatform.isAarch64 then [ wineWowPackages.full ] else [ ])
|
(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-spelling)
|
||||||
(require 'config-nix)
|
(require 'config-nix)
|
||||||
(require 'config-purescript)
|
(require 'config-purescript)
|
||||||
|
(require 'config-scad)
|
||||||
|
|
||||||
(server-start)
|
(server-start)
|
||||||
|
|
Loading…
Add table
Reference in a new issue