Compare commits
4 commits
28604f4053
...
92bf748a71
| Author | SHA1 | Date | |
|---|---|---|---|
| 92bf748a71 | |||
| 3891b6c2cd | |||
| 54cc1aa25e | |||
| e3de8dcd0a |
3 changed files with 12 additions and 9 deletions
3
.gitmodules
vendored
3
.gitmodules
vendored
|
|
@ -1,3 +0,0 @@
|
||||||
[submodule "home/emacs.d"]
|
|
||||||
path = home/emacs.d
|
|
||||||
url = https://github.com/hlissner/doom-emacs
|
|
||||||
17
home/cli.nix
17
home/cli.nix
|
|
@ -48,6 +48,10 @@ in {
|
||||||
|
|
||||||
# editing
|
# editing
|
||||||
nil # nix language server
|
nil # nix language server
|
||||||
|
shellcheck
|
||||||
|
editorconfig-core-c
|
||||||
|
shfmt
|
||||||
|
(aspellWithDicts (dicts: with dicts; [ en en-computers en-science de ]))
|
||||||
|
|
||||||
# system tools
|
# system tools
|
||||||
htop-vim # htop with vim bindings
|
htop-vim # htop with vim bindings
|
||||||
|
|
@ -83,6 +87,8 @@ in {
|
||||||
set -g escape-time 0
|
set -g escape-time 0
|
||||||
bind-key C-z send-prefix
|
bind-key C-z send-prefix
|
||||||
set -g renumber-windows on
|
set -g renumber-windows on
|
||||||
|
|
||||||
|
bind-key T swap-window -t 0
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -109,9 +115,7 @@ in {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
starship = {
|
starship = { enable = true; };
|
||||||
enable = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
# better cat
|
# better cat
|
||||||
bat.enable = true;
|
bat.enable = true;
|
||||||
|
|
@ -125,7 +129,6 @@ in {
|
||||||
|
|
||||||
emacs = {
|
emacs = {
|
||||||
enable = true;
|
enable = true;
|
||||||
#package = pkgs.emacs-unstable;
|
|
||||||
extraPackages = epkgs: with epkgs; [ vterm ];
|
extraPackages = epkgs: with epkgs; [ vterm ];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -173,7 +176,11 @@ in {
|
||||||
defaultCacheTtlSsh = 300;
|
defaultCacheTtlSsh = 300;
|
||||||
};
|
};
|
||||||
|
|
||||||
services.emacs = { enable = true; };
|
services.emacs = {
|
||||||
|
enable = true;
|
||||||
|
defaultEditor = true;
|
||||||
|
startWithUserSession = true;
|
||||||
|
};
|
||||||
|
|
||||||
home.file.".local" = {
|
home.file.".local" = {
|
||||||
recursive = true;
|
recursive = true;
|
||||||
|
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
Subproject commit bf8495b4122701fb30cb6cea37281dc8f3bedcd0
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue