configurations: update emacs conf
This commit is contained in:
parent
614dea0e57
commit
1bbf628ea9
|
@ -16,6 +16,7 @@ let
|
||||||
pkgs.noto-fonts-cjk-serif
|
pkgs.noto-fonts-cjk-serif
|
||||||
pkgs.wqy_zenhei
|
pkgs.wqy_zenhei
|
||||||
pkgs.corefonts
|
pkgs.corefonts
|
||||||
|
(pkgs.nerdfonts.override { fonts = [ "FiraCode"]; })
|
||||||
|
|
||||||
] ++ defaultFonts;
|
] ++ defaultFonts;
|
||||||
|
|
||||||
|
@ -23,7 +24,7 @@ let
|
||||||
pkgs.ubuntu_font_family
|
pkgs.ubuntu_font_family
|
||||||
pkgs.monocraft
|
pkgs.monocraft
|
||||||
pkgs.hack-font
|
pkgs.hack-font
|
||||||
(pkgs.nerdfonts.override { fonts = [ "FiraCode" "DroidSansMono" "Meslo" "ProFont" ]; })
|
(pkgs.nerdfonts.override { fonts = [ "DroidSansMono" "Meslo" "ProFont" ]; })
|
||||||
];
|
];
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
{ config, lib, pkgs, materusPkgs, ... }:
|
{ config, lib, pkgs, materusPkgs, materusFlake, ... }:
|
||||||
let
|
let
|
||||||
cfg = config.materus.profile.editor.emacs;
|
cfg = config.materus.profile.editor.emacs;
|
||||||
|
configPath = "${materusFlake.selfPath}" + "/extraFiles/config/emacs/materus/";
|
||||||
emacsPkgs = with pkgs;[
|
emacsPkgs = with pkgs;[
|
||||||
python3
|
python3
|
||||||
lua
|
lua
|
||||||
|
@ -26,14 +27,27 @@ in
|
||||||
enable = true;
|
enable = true;
|
||||||
package = with pkgs; lib.mkDefault (if pkgs ? emacs-pgtk then emacs-pgtk else emacs-gtk);
|
package = with pkgs; lib.mkDefault (if pkgs ? emacs-pgtk then emacs-pgtk else emacs-gtk);
|
||||||
extraPackages = epkgs: with epkgs; [
|
extraPackages = epkgs: with epkgs; [
|
||||||
magit
|
|
||||||
evil
|
evil
|
||||||
|
evil-numbers
|
||||||
|
evil-mc
|
||||||
|
evil-tex
|
||||||
|
evil-nerd-commenter
|
||||||
|
|
||||||
|
magit
|
||||||
helm
|
helm
|
||||||
avy
|
avy
|
||||||
corfu
|
corfu
|
||||||
|
ivy
|
||||||
vterm
|
vterm
|
||||||
centaur-tabs
|
centaur-tabs
|
||||||
treemacs
|
treemacs
|
||||||
|
treemacs-evil
|
||||||
|
treemacs-nerd-icons
|
||||||
|
tree-edit
|
||||||
|
doom-modeline
|
||||||
|
nerd-icons
|
||||||
|
nerd-icons-completion
|
||||||
|
load-relative
|
||||||
|
|
||||||
lsp-mode
|
lsp-mode
|
||||||
d-mode
|
d-mode
|
||||||
|
@ -41,6 +55,9 @@ in
|
||||||
org
|
org
|
||||||
markdown-mode
|
markdown-mode
|
||||||
json-mode
|
json-mode
|
||||||
|
|
||||||
|
vscode-dark-plus-theme
|
||||||
|
kaolin-themes
|
||||||
];
|
];
|
||||||
extraConfig = ''
|
extraConfig = ''
|
||||||
;;;; Set emacs PATH
|
;;;; Set emacs PATH
|
||||||
|
@ -49,6 +66,9 @@ in
|
||||||
${builtins.concatStringsSep "\n" (builtins.map (x: "(setq exec-path (append exec-path '(\""+x+"/bin\")))" ) emacsPkgs)}
|
${builtins.concatStringsSep "\n" (builtins.map (x: "(setq exec-path (append exec-path '(\""+x+"/bin\")))" ) emacsPkgs)}
|
||||||
|
|
||||||
;;;; Done setting PATH
|
;;;; Done setting PATH
|
||||||
|
|
||||||
|
; Load Config file
|
||||||
|
(load-file "${configPath + "config.el"}")
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
(set-frame-font "FiraCode Nerd Font" nil t)
|
Loading…
Reference in New Issue