feat: initial emacs config
This commit is contained in:
parent
0cb9c93c5c
commit
2e6aa91f36
4 changed files with 111 additions and 5 deletions
37
home-manager/emacs/default.nix
Normal file
37
home-manager/emacs/default.nix
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
emacs-all-the-icons-fonts
|
||||
sbcl
|
||||
];
|
||||
programs.emacs = {
|
||||
enable = true;
|
||||
extraPackages = epkgs: with epkgs; [
|
||||
use-package
|
||||
magit
|
||||
org
|
||||
org-roam
|
||||
evil
|
||||
evil-collection
|
||||
which-key
|
||||
counsel
|
||||
ivy
|
||||
swiper
|
||||
doom-themes
|
||||
nord-theme
|
||||
projectile
|
||||
flycheck
|
||||
company
|
||||
lsp-mode
|
||||
lsp-ui
|
||||
dap-mode
|
||||
treemacs
|
||||
treemacs-evil
|
||||
treemacs-projectile
|
||||
sly
|
||||
];
|
||||
extraConfig = builtins.readFile ./init.el;
|
||||
};
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue