Add basic helix config
This commit is contained in:
parent
1943b42e07
commit
25d40e92e6
3 changed files with 73 additions and 0 deletions
71
home_manager/modules/helix.nix
Normal file
71
home_manager/modules/helix.nix
Normal file
|
|
@ -0,0 +1,71 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
|
||||
|
||||
programs.helix = {
|
||||
enable = true;
|
||||
languages = [ ];
|
||||
settings = { };
|
||||
|
||||
|
||||
|
||||
themes =
|
||||
let
|
||||
strPalette = with pkgs.rice; palette.toRgbShortHex coloPalette;
|
||||
transparent = "none";
|
||||
gray = "#665c54";
|
||||
dark-gray = "#3c3836";
|
||||
white = "#fbf1c7";
|
||||
black = "#282828";
|
||||
red = "#fb4934";
|
||||
green = "#b8bb26";
|
||||
yellow = "#fabd2f";
|
||||
orange = "#fe8019";
|
||||
blue = "#83a598";
|
||||
magenta = "#d3869b";
|
||||
cyan = "#8ec07c";
|
||||
in
|
||||
{
|
||||
base16 = {
|
||||
"ui.menu" = transparent;
|
||||
"ui.menu.selected" = { modifiers = [ "reversed" ]; };
|
||||
"ui.linenr" = { fg = gray; bg = dark-gray; };
|
||||
"ui.popup" = { modifiers = [ "reversed" ]; };
|
||||
"ui.linenr.selected" = { fg = white; bg = black; modifiers = [ "bold" ]; };
|
||||
"ui.selection" = { fg = black; bg = blue; };
|
||||
"ui.selection.primary" = { modifiers = [ "reversed" ]; };
|
||||
"comment" = { fg = gray; };
|
||||
"ui.statusline" = { fg = white; bg = dark-gray; };
|
||||
"ui.statusline.inactive" = { fg = dark-gray; bg = white; };
|
||||
"ui.help" = { fg = dark-gray; bg = white; };
|
||||
"ui.cursor" = { modifiers = [ "reversed" ]; };
|
||||
"variable" = red;
|
||||
"variable.builtin" = orange;
|
||||
"constant.numeric" = orange;
|
||||
"constant" = orange;
|
||||
"attributes" = yellow;
|
||||
"type" = yellow;
|
||||
"ui.cursor.match" = { fg = yellow; modifiers = [ "underlined" ]; };
|
||||
"string" = green;
|
||||
"variable.other.member" = red;
|
||||
"constant.character.escape" = cyan;
|
||||
"function" = blue;
|
||||
"constructor" = blue;
|
||||
"special" = blue;
|
||||
"keyword" = magenta;
|
||||
"label" = magenta;
|
||||
"namespace" = blue;
|
||||
"diff.plus" = green;
|
||||
"diff.delta" = yellow;
|
||||
"diff.minus" = red;
|
||||
"diagnostic" = { modifiers = [ "underlined" ]; };
|
||||
"ui.gutter" = { bg = black; };
|
||||
"info" = blue;
|
||||
"hint" = dark-gray;
|
||||
"debug" = dark-gray;
|
||||
"warning" = yellow;
|
||||
"error" = red;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
@ -125,6 +125,7 @@
|
|||
./modules/dunst.nix
|
||||
# ./modules/grobi.nix
|
||||
./modules/gtk_theme.nix
|
||||
./modules/helix.nix
|
||||
# ./modules/joystickwake.nix
|
||||
./modules/kakoune.nix
|
||||
# ./modules/keepassxc.nix
|
||||
|
|
|
|||
|
|
@ -97,6 +97,7 @@
|
|||
./modules/dunst.nix
|
||||
# ./modules/grobi.nix
|
||||
./modules/gtk_theme.nix
|
||||
./modules/helix.nix
|
||||
# ./modules/joystickwake.nix
|
||||
./modules/kakoune.nix
|
||||
# ./modules/keepassxc.nix
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue