I ffing give up for today...

This commit is contained in:
Chris Kruining 2025-07-30 22:58:39 +02:00
parent ca645515a8
commit 41acda91f4
Signed by: chris
SSH key fingerprint: SHA256:nG82MUfuVdRVyCKKWqhY+pCrbz9nbX6uzUns4RKa1Pg
22 changed files with 253 additions and 75 deletions

View file

@ -2,29 +2,29 @@
let
inherit (lib) mkEnableOption mkIf;
cfg = config.${namespace}.editors.nano;
cfg = config.${namespace}.editor.nano;
in
{
options.${namespace}.editors.nano = {
options.${namespace}.editor.nano = {
enable = mkEnableOption "nano";
};
config = mkIf cfg.enable {
home.packages = with pkgs; [ nano ];
programs.nano = {
enable = true;
syntaxHighlight = true;
nanorc = ''
set autoindent
set jumpyscrolling
set linenumbers
set mouse
set saveonexit
set smarthome
set tabstospaces
set tabsize 2
'';
};
# programs.nano = {
# enable = true;
# syntaxHighlight = true;
# nanorc = ''
# set autoindent
# set jumpyscrolling
# set linenumbers
# set mouse
# set saveonexit
# set smarthome
# set tabstospaces
# set tabsize 2
# '';
# };
};
}

View file

@ -5,9 +5,9 @@ let
cfg = config.${namespace}.editor.nvim;
in
{
imports = [
inputs.nvf.nixosModules.default
];
# imports = [
# inputs.nvf.nixosModules.default
# ];
options.${namespace}.editor.nvim = {
enable = mkEnableOption "enable nvim via nvf on user level";
@ -18,30 +18,29 @@ in
imagemagick
editorconfig-core-c
sqlite
deno
pandoc
nuspell
hunspellDicts.nl_NL
hunspellDicts.en_GB-ise
];
programs.nvf = {
enable = true;
settings.vim = {
statusline.lualine.enable = true;
telescope.enable = true;
autocomplete.nvim-cmp.enable = true;
# programs.nvf = {
# enable = true;
# settings.vim = {
# statusline.lualine.enable = true;
# telescope.enable = true;
# autocomplete.nvim-cmp.enable = true;
lsp.enable = true;
# lsp.enable = true;
languages = {
enableTreesitter = true;
# languages = {
# enableTreesitter = true;
nix.enable = true;
ts.enable = true;
rust.enable = true;
};
};
};
# nix.enable = true;
# ts.enable = true;
# rust.enable = true;
# };
# };
# };
};
}

View file

@ -1,9 +1,9 @@
{ config, lib, pkgs, namespace, ... }: let
inherit (lib) mkIf mkEnableOption;
cfg = config.${namespace}.editors.zed;
cfg = config.${namespace}.editor.zed;
in {
options.${namespace}.editors.zed = {
options.${namespace}.editor.zed = {
enable = mkEnableOption "zed";
};