nixfleet/pkgs/emacs/default.nix
aciceri 317e50ef9f
Emacs and inputs updated
- Added org-roam in Emacs
- Flake inputs updated
- Other little modifications
2021-10-14 01:26:52 +02:00

49 lines
872 B
Nix

{ pkgs, ... }:
let
myEmacs = pkgs.emacsPgtkGcc;
emacsWithPackages = (pkgs.emacsPackagesFor myEmacs).emacsWithPackages;
in
emacsWithPackages (
epkgs: (
with epkgs.melpaStablePackages; [ ]
) ++ (
with epkgs.melpaPackages; [
all-the-icons
use-package
evil
evil-collection
helm
projectile
helm-projectile
magit
company
helm-company
helm-ag
fira-code-mode
org-superstar
org-roam
nix-mode
lsp-python-ms
lispy
lsp-mode
dap-mode
which-key
sudo-utils
rainbow-delimiters
treemacs
treemacs-evil
treemacs-projectile
treemacs-icons-dired
treemacs-magit
treemacs-persp
]
) ++ (
with epkgs.elpaPackages; [
modus-themes
]
) ++ (
with pkgs; [
pkgs.graphviz-nox
]
)
)