nixfleet/pkgs/emacs/default.nix
Andrea Ciceri 28f14cab2e
Things
- `cura` without disallowed areas for Ender 3 printers
- `udiskie` service for automounting
- Emacs
  - removed `vimish-fold` and `evil-vimish-fold`
  - added `origami`
  - added  `highlight-indent-guides`
  - restored and improved `dirvish`
2022-06-03 11:48:47 +02:00

78 lines
1.4 KiB
Nix

{ pkgs, ... }:
let
myEmacs = pkgs.emacsPgtkNativeComp;
emacsWithPackages = (pkgs.emacsPackagesFor myEmacs).emacsWithPackages;
in
emacsWithPackages (
epkgs: (
with epkgs.melpaStablePackages; [ ]
) ++ (
with epkgs.melpaPackages; [
aggressive-indent
all-the-icons
company
company-nixos-options
dap-mode
diff-hl
diredfl
dirvish
doom-modeline
envrc
evil
evil-collection
fira-code-mode
go-translate
good-scroll
haskell-mode
helm
helm-ag
helm-company
helm-nixos-options
helm-projectile
highlight-indent-guides
lispy
lsp-haskell
lsp-mode
lsp-python-ms
lsp-ui
magit
magit-delta
nix-mode
nix-modeline
nixos-options
notmuch
org-download
org-fragtog
org-roam
org-roam-ui
org-superstar
origami
projectile
psc-ide
psci
purescript-mode
rainbow-delimiters
rainbow-identifiers
scad-mode
sudo-utils
symex
treemacs
treemacs-evil
treemacs-icons-dired
treemacs-magit
treemacs-persp
treemacs-projectile
use-package
visual-fill-column
which-key
writegood-mode
]
) ++ (
with epkgs.elpaPackages; [
modus-themes
minimap
]
) ++ (
with pkgs; [ ]
)
)