From 29967fa5f5e8db4077147622abd54bd8a412cd60 Mon Sep 17 00:00:00 2001 From: illustris Date: Thu, 6 Apr 2023 12:03:39 +0530 Subject: [PATCH] add emacs packages --- configuration.nix | 20 ++++++++++++++++++-- emacs.d/init.el | 2 ++ 2 files changed, 20 insertions(+), 2 deletions(-) diff --git a/configuration.nix b/configuration.nix index 5b0859c..432a353 100644 --- a/configuration.nix +++ b/configuration.nix @@ -3,8 +3,8 @@ imports = [ ./desktop-configuration.nix ./hardware-configuration.nix - ./networking-configuration.nix ./modules + ./networking-configuration.nix ]; # Support ARM builds @@ -76,9 +76,25 @@ enable = true; extraPackages = ( epkgs: (with epkgs; [ + bpftrace-mode + cmake-mode + color-theme-modern + docker-compose-mode + dockerfile-mode + dtrace-script-mode + gitlab-ci-mode + go-mode + graphviz-dot-mode + haskell-mode + json-mode + markdown-mode material-theme nix-mode - color-theme-modern + puppet-mode + python-mode + strace-mode + verilog-mode + yaml-mode ]) ); }; diff --git a/emacs.d/init.el b/emacs.d/init.el index f89fdae..f0e1058 100644 --- a/emacs.d/init.el +++ b/emacs.d/init.el @@ -13,6 +13,8 @@ (global-set-key (kbd "C-x k") 'kill-this-buffer) (put 'scroll-left 'disabled nil) +(setq inhibit-startup-screen t) + (load-theme 'cobalt t t) (enable-theme 'cobalt)