editor shit

This commit is contained in:
martyTF 2026-05-04 08:12:55 +02:00
parent 633a966e52
commit b11e8347c1
14 changed files with 160 additions and 16 deletions

View file

@ -0,0 +1,14 @@
{
config,
lib,
pkgs,
...
}:
{
imports = [
./emacs.nix
./neovim.nix
./zed.nix
];
}

View file

@ -0,0 +1,20 @@
{
osConfig,
config,
...
}:
{
config = {
programs = {
emacs = {
extraConfig = ''
(setq standard-indent 2)
'';
extraPackages = epkgs: [
];
};
};
};
}

View file

@ -0,0 +1,20 @@
{
osConfig,
config,
...
}:
{
config = {
programs = {
emacs = {
extraConfig = ''
(setq standard-indent 2)
'';
extraPackages = epkgs: [
];
};
};
};
}

View file

@ -0,0 +1,23 @@
{
lib,
config,
osConfig,
inputs,
pkgs,
...
}:
{
config = {
programs = {
neovim = {
plugins =
with pkgs.vimPlugins;
[
telescope-nvim
]
++ [ ];
};
};
};
}

View file

@ -0,0 +1,23 @@
{
lib,
config,
osConfig,
inputs,
pkgs,
...
}:
{
config = {
programs = {
zed-editor = {
extensions = [
"nix"
"toml"
"rust"
"html"
];
};
};
};
}