color + chatterini oauthtempfix

This commit is contained in:
Lennart J. Kurzweg (Nx2)
2024-05-15 15:48:20 +02:00
parent 97ff74ed59
commit 1645cf034a
6 changed files with 39 additions and 26 deletions

View File

@@ -1,13 +1,15 @@
{ config, pkgs, rice, ... }:
{ config, pkgs, pkgs-unstable, rice, ... }:
{
home = {
packages = with pkgs; [
helix
nixfmt # nix formater
nil # nix language server
python311Packages.python-lsp-server
];
lldb # debugger for llvm stuff
] ++ (with pkgs-unstable; [
helix
]);
sessionVariables = {
EDITOR = "hx";
VISUAL = "hx";
@@ -15,6 +17,8 @@
};
programs.helix = {
enable = true;
defaultEditor = true;
package = pkgs-unstable.helix;
settings = {
# theme = "base16_terminal";
theme = "base16";
@@ -27,6 +31,9 @@
line-number = "relative";
color-modes = true;
bufferline = "always";
popup-border = "all";
completion-trigger-len = 1;
completion-timeout = 5;
file-picker.hidden = false;
middle-click-paste = false;
cursorline = true;
@@ -199,7 +206,7 @@
"bg" = background;
};
"ui.window" = {
"bg" = background;
"bg" = black.base;
};
};
};