rename home dir
This commit is contained in:
66
home/packages/helix/dracula_trans.toml
Normal file
66
home/packages/helix/dracula_trans.toml
Normal file
@@ -0,0 +1,66 @@
|
||||
# Author : Sebastian Zivota <loewenheim@mailbox.org>
|
||||
"comment" = { fg = "comment" }
|
||||
"constant" = { fg = "purple" }
|
||||
"constant.character.escape" = { fg = "pink" }
|
||||
"function" = { fg = "green" }
|
||||
"keyword" = { fg = "pink" }
|
||||
"operator" = { fg = "pink" }
|
||||
"punctuation" = { fg = "foreground" }
|
||||
"string" = { fg = "yellow" }
|
||||
"string.regexp" = { fg = "red" }
|
||||
"tag" = { fg = "pink" }
|
||||
"type" = { fg = "cyan", modifiers = ["italic"] }
|
||||
"type.enum.variant" = { fg = "foreground", modifiers = ["italic"] }
|
||||
"variable" = { fg = "foreground" }
|
||||
"variable.builtin" = { fg = "cyan", modifiers = ["italic"] }
|
||||
"variable.parameter" = { fg ="orange", modifiers = ["italic"] }
|
||||
|
||||
"diff.plus" = { fg = "green" }
|
||||
"diff.delta" = { fg = "orange" }
|
||||
"diff.minus" = { fg = "red" }
|
||||
|
||||
"ui.background" = {} #fg = "foreground", bg = "background" }
|
||||
"ui.cursor" = { fg = "background", bg = "orange", modifiers = ["dim"] }
|
||||
"ui.cursor.match" = { fg = "green", modifiers = ["underlined"] }
|
||||
"ui.cursor.primary" = { fg = "background", bg = "cyan", modifier = ["dim"] }
|
||||
"ui.help" = { fg = "foreground", bg = "background_dark" }
|
||||
"ui.linenr" = { fg = "comment" }
|
||||
"ui.linenr.selected" = { fg = "foreground" }
|
||||
"ui.menu" = { fg = "foreground", bg = "background_dark" }
|
||||
"ui.menu.selected" = { fg = "cyan", bg = "background_dark" }
|
||||
"ui.popup" = { fg = "foreground", bg = "background_dark" }
|
||||
"ui.selection" = { bg = "secondary_highlight" }
|
||||
"ui.selection.primary" = { bg = "primary_highlight" }
|
||||
"ui.statusline" = { fg = "foreground", bg = "background_dark" }
|
||||
"ui.statusline.inactive" = { fg = "comment", bg = "background_dark" }
|
||||
"ui.text" = { fg = "foreground" }
|
||||
"ui.text.focus" = { fg = "cyan" }
|
||||
"ui.window" = { fg = "foreground" }
|
||||
"ui.virtual" = { fg = "comment" }
|
||||
|
||||
"error" = { fg = "red" }
|
||||
"warning" = { fg = "cyan" }
|
||||
|
||||
"markup.heading" = { fg = "purple", modifiers = ["bold"] }
|
||||
"markup.list" = "cyan"
|
||||
"markup.bold" = { fg = "orange", modifiers = ["bold"] }
|
||||
"markup.italic" = { fg = "yellow", modifiers = ["italic"] }
|
||||
"markup.link.url" = "cyan"
|
||||
"markup.link.text" = "pink"
|
||||
"markup.quote" = { fg = "yellow", modifiers = ["italic"] }
|
||||
"markup.raw" = { fg = "foreground" }
|
||||
|
||||
[palette]
|
||||
background = "#282a36"
|
||||
background_dark = "#21222c"
|
||||
primary_highlight = "#800049"
|
||||
secondary_highlight = "#4d4f66"
|
||||
foreground = "#f8f8f2"
|
||||
comment = "#6272a4"
|
||||
red = "#ff5555"
|
||||
orange = "#ffb86c"
|
||||
yellow = "#f1fa8c"
|
||||
green = "#50fa7b"
|
||||
purple = "#bd93f9"
|
||||
cyan = "#8be9fd"
|
||||
pink = "#ff79c6"
|
||||
106
home/packages/helix/everforest_dark_trans.toml
Normal file
106
home/packages/helix/everforest_dark_trans.toml
Normal file
@@ -0,0 +1,106 @@
|
||||
# Everforest (Dark Hard)
|
||||
# Author: CptPotato
|
||||
|
||||
# Original Author:
|
||||
# URL: https://github.com/sainnhe/everforest
|
||||
# Filename: autoload/everforest.vim
|
||||
# Author: sainnhe
|
||||
# Email: sainnhe@gmail.com
|
||||
# License: MIT License
|
||||
|
||||
"constant.character.escape" = "orange"
|
||||
"type" = "yellow"
|
||||
"constant" = "purple"
|
||||
"constant.numeric" = "purple"
|
||||
"string" = "green"
|
||||
"comment" = "grey0"
|
||||
"variable" = "fg"
|
||||
"variable.builtin" = "blue"
|
||||
"variable.parameter" = "fg"
|
||||
"variable.other.member" = "fg"
|
||||
"label" = "aqua"
|
||||
"punctuation" = "grey2"
|
||||
"punctuation.delimiter" = "grey2"
|
||||
"punctuation.bracket" = "fg"
|
||||
"keyword" = "red"
|
||||
"operator" = "orange"
|
||||
"function" = "green"
|
||||
"function.builtin" = "blue"
|
||||
"function.macro" = "aqua"
|
||||
"tag" = "yellow"
|
||||
"namespace" = "aqua"
|
||||
"attribute" = "aqua"
|
||||
"constructor" = "yellow"
|
||||
"module" = "blue"
|
||||
"special" = "orange"
|
||||
|
||||
"markup.heading.marker" = "grey2"
|
||||
"markup.heading.1" = { fg = "red", modifiers = ["bold"] }
|
||||
"markup.heading.2" = { fg = "orange", modifiers = ["bold"] }
|
||||
"markup.heading.3" = { fg = "yellow", modifiers = ["bold"] }
|
||||
"markup.heading.4" = { fg = "green", modifiers = ["bold"] }
|
||||
"markup.heading.5" = { fg = "blue", modifiers = ["bold"] }
|
||||
"markup.heading.6" = { fg = "fg", modifiers = ["bold"] }
|
||||
"markup.list" = "red"
|
||||
"markup.bold" = { modifiers = ["bold"] }
|
||||
"markup.italic" = { modifiers = ["italic"] }
|
||||
"markup.link.url" = { fg = "blue", modifiers = ["underlined"] }
|
||||
"markup.link.text" = "purple"
|
||||
"markup.quote" = "grey2"
|
||||
"markup.raw" = "green"
|
||||
|
||||
"diff.plus" = "green"
|
||||
"diff.delta" = "orange"
|
||||
"diff.minus" = "red"
|
||||
|
||||
"ui.background" = { }
|
||||
"ui.cursor" = { fg = "bg0", bg = "fg" }
|
||||
"ui.cursor.match" = { fg = "orange", bg = "bg_yellow" }
|
||||
"ui.cursor.insert" = { fg = "bg0", bg = "grey1" }
|
||||
"ui.cursor.select" = { fg = "bg0", bg = "blue" }
|
||||
"ui.linenr" = "grey0"
|
||||
"ui.linenr.selected" = "fg"
|
||||
"ui.statusline" = { fg = "grey2", bg = "bg2" }
|
||||
"ui.statusline.inactive" = { fg = "grey0", bg = "bg1" }
|
||||
"ui.popup" = { fg = "grey2", bg = "bg1" }
|
||||
"ui.window" = { fg = "grey2", bg = "bg1" }
|
||||
"ui.help" = { fg = "fg", bg = "bg1" }
|
||||
"ui.text" = "fg"
|
||||
"ui.text.focus" = "fg"
|
||||
"ui.menu" = { fg = "fg", bg = "bg2" }
|
||||
"ui.menu.selected" = { fg = "bg0", bg = "green" }
|
||||
"ui.selection" = { bg = "bg3" }
|
||||
"ui.virtual" = "grey0"
|
||||
|
||||
"hint" = "blue"
|
||||
"info" = "aqua"
|
||||
"warning" = "yellow"
|
||||
"error" = "red"
|
||||
"diagnostic" = { modifiers = ["underlined"] }
|
||||
|
||||
|
||||
[palette]
|
||||
|
||||
bg0 = "#2b3339"
|
||||
bg1 = "#323c41"
|
||||
bg2 = "#3a454a"
|
||||
bg3 = "#445055"
|
||||
bg4 = "#4c555b"
|
||||
bg5 = "#53605c"
|
||||
bg_visual = "#503946"
|
||||
bg_red = "#4e3e43"
|
||||
bg_green = "#404d44"
|
||||
bg_blue = "#394f5a"
|
||||
bg_yellow = "#4a4940"
|
||||
|
||||
fg = "#d3c6aa"
|
||||
red = "#e67e80"
|
||||
orange = "#e69875"
|
||||
yellow = "#dbbc7f"
|
||||
green = "#a7c080"
|
||||
aqua = "#83c092"
|
||||
blue = "#7fbbb3"
|
||||
purple = "#d699b6"
|
||||
grey0 = "#7a8478"
|
||||
grey1 = "#859289"
|
||||
grey2 = "#9da9a0"
|
||||
32
home/packages/helix/helix.nix
Normal file
32
home/packages/helix/helix.nix
Normal file
@@ -0,0 +1,32 @@
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
programs.helix = {
|
||||
enable = true;
|
||||
themes = {
|
||||
everforest_dark_trans = ./everforest_dark_trans.toml;
|
||||
dracula_trans = ./dracula_trans.toml;
|
||||
};
|
||||
settings = {
|
||||
theme = "everforest_dark_trans";
|
||||
editor = {
|
||||
mouse = true;
|
||||
middle-click-paste = true;
|
||||
whitespace = {
|
||||
render = {
|
||||
space = "all";
|
||||
tab = "all";
|
||||
newline = "none";
|
||||
};
|
||||
characters = {
|
||||
space = "·";
|
||||
nbsp = "⍽";
|
||||
tab = "→";
|
||||
newline = "⏎";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user