emacs: Add doem emacs submodule
This commit is contained in:
parent
7fc3967f08
commit
5f8f755e6e
3 changed files with 15 additions and 1 deletions
3
.gitmodules
vendored
Normal file
3
.gitmodules
vendored
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
[submodule "home/emacs.d"]
|
||||||
|
path = home/emacs.d
|
||||||
|
url = https://github.com/hlissner/doom-emacs
|
||||||
12
home/cli.nix
12
home/cli.nix
|
|
@ -27,6 +27,7 @@
|
||||||
file # info about files
|
file # info about files
|
||||||
unzip
|
unzip
|
||||||
gotop
|
gotop
|
||||||
|
gnumake
|
||||||
ripgrep # better grep
|
ripgrep # better grep
|
||||||
|
|
||||||
# editors
|
# editors
|
||||||
|
|
@ -37,10 +38,14 @@
|
||||||
nix-prefetch-git
|
nix-prefetch-git
|
||||||
cabal-install
|
cabal-install
|
||||||
haskellPackages.cabal-fmt
|
haskellPackages.cabal-fmt
|
||||||
|
haskellPackages.stylish-haskell
|
||||||
];
|
];
|
||||||
home.extraOutputsToInstall = [ "doc" "info" "devdoc" ];
|
home.extraOutputsToInstall = [ "doc" "info" "devdoc" ];
|
||||||
|
|
||||||
xdg.enable = true;
|
xdg.enable = true;
|
||||||
|
xdg.configFile = {
|
||||||
|
"emacs".source = config.lib.file.mkOutOfStoreSymlink ./emacs.d;
|
||||||
|
};
|
||||||
|
|
||||||
programs = {
|
programs = {
|
||||||
direnv = {
|
direnv = {
|
||||||
|
|
@ -59,7 +64,12 @@
|
||||||
|
|
||||||
git = {
|
git = {
|
||||||
enable = true;
|
enable = true;
|
||||||
ignores = [ "*~" "*.swp" "result" ];
|
ignores = [
|
||||||
|
"*~"
|
||||||
|
"*.swp"
|
||||||
|
"result"
|
||||||
|
"dist-newstyle"
|
||||||
|
];
|
||||||
userEmail = "me@failco.de";
|
userEmail = "me@failco.de";
|
||||||
userName = "Alexander Kobjolke";
|
userName = "Alexander Kobjolke";
|
||||||
};
|
};
|
||||||
|
|
|
||||||
1
home/emacs.d
Submodule
1
home/emacs.d
Submodule
|
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit bf8495b4122701fb30cb6cea37281dc8f3bedcd0
|
||||||
Loading…
Add table
Add a link
Reference in a new issue