Basic rice set up. Still need to add a way to reiably update the package lists and i need a launcher.
This commit is contained in:
commit
3e89f350a6
107 changed files with 7553 additions and 0 deletions
17
private_dot_config/helix/config.toml
Normal file
17
private_dot_config/helix/config.toml
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
theme = "default-jsw"
|
||||
|
||||
[editor]
|
||||
line-number = "relative"
|
||||
default-yank-register = "+"
|
||||
bufferline = "multiple"
|
||||
|
||||
[editor.cursor-shape]
|
||||
insert = "bar"
|
||||
normal = "block"
|
||||
select = "underline"
|
||||
|
||||
[keys.normal]
|
||||
"C-/" = "toggle_comments"
|
||||
|
||||
### THEMING
|
||||
|
||||
97
private_dot_config/helix/themes/default-jsw.toml.tmpl
Normal file
97
private_dot_config/helix/themes/default-jsw.toml.tmpl
Normal file
|
|
@ -0,0 +1,97 @@
|
|||
"attribute" = "base09"
|
||||
"comment" = { fg = "base03", modifiers = ["italic"] }
|
||||
"constant" = "base09"
|
||||
"constant.character.escape" = "base0C"
|
||||
"constant.numeric" = "base09"
|
||||
"constructor" = "base0D"
|
||||
"debug" = "base03"
|
||||
"diagnostic" = { modifiers = ["underlined"] }
|
||||
"diff.delta" = "base09"
|
||||
"diff.minus" = "base08"
|
||||
"diff.plus" = "base0B"
|
||||
"error" = "base08"
|
||||
"function" = "base0D"
|
||||
"hint" = "base03"
|
||||
"info" = "base0D"
|
||||
"keyword" = "base0E"
|
||||
"label" = "base0E"
|
||||
"namespace" = "base0E"
|
||||
"operator" = "base05"
|
||||
"special" = "base0D"
|
||||
"string" = "base0B"
|
||||
"tag" = "base08"
|
||||
"type" = "base0A"
|
||||
"variable" = "base08"
|
||||
"variable.other.member" = "base0D"
|
||||
"warning" = "base09"
|
||||
|
||||
"markup.bold" = { fg = "base0A", modifiers = ["bold"] }
|
||||
"markup.heading.1" = { fg = "base0D", modifiers = ["bold"] }
|
||||
"markup.heading.2" = { fg = "base08", modifiers = ["bold"] }
|
||||
"markup.heading.3" = { fg = "base09", modifiers = ["bold"] }
|
||||
"markup.heading.4" = { fg = "base0A", modifiers = ["bold"] }
|
||||
"markup.heading.5" = { fg = "base0B", modifiers = ["bold"] }
|
||||
"markup.heading.6" = { fg = "base0C", modifiers = ["bold"] }
|
||||
"markup.italic" = { fg = "base0E", modifiers = ["italic"] }
|
||||
"markup.link.text" = "base08"
|
||||
"markup.link.url" = { fg = "base09", modifiers = ["underlined"] }
|
||||
"markup.list" = "base08"
|
||||
"markup.quote" = "base0C"
|
||||
"markup.raw" = "base0B"
|
||||
"markup.strikethrough" = { modifiers = ["crossed_out"] }
|
||||
|
||||
"diagnostic.hint" = { underline = { style = "curl" } }
|
||||
"diagnostic.info" = { underline = { style = "curl" } }
|
||||
"diagnostic.warning" = { underline = { style = "curl" } }
|
||||
"diagnostic.error" = { underline = { style = "curl" } }
|
||||
|
||||
"ui.background" = { bg = "base00" }
|
||||
"ui.bufferline.active" = { fg = "base00", bg = "base03", modifiers = ["bold"] }
|
||||
"ui.bufferline" = { fg = "base04", bg = "base00" }
|
||||
"ui.cursor" = { fg = "base06", modifiers = ["reversed"] }
|
||||
"ui.cursor.primary" = { fg = "base05", modifiers = ["reversed"] }
|
||||
"ui.cursorline.primary" = { fg = "base05", bg = "base01" }
|
||||
"ui.cursor.match" = { fg = "base05", bg = "base02", modifiers = ["bold"] }
|
||||
"ui.cursor.select" = { fg = "base05", modifiers = ["reversed"] }
|
||||
"ui.gutter" = { bg = "base00" }
|
||||
"ui.help" = { fg = "base06", bg = "base01" }
|
||||
"ui.linenr" = { fg = "base03", bg = "base00" }
|
||||
"ui.linenr.selected" = { fg = "base04", bg = "base01", modifiers = ["bold"] }
|
||||
"ui.menu" = { fg = "base05", bg = "base01" }
|
||||
"ui.menu.scroll" = { fg = "base03", bg = "base01" }
|
||||
"ui.menu.selected" = { fg = "base01", bg = "base04" }
|
||||
"ui.popup" = { bg = "base01" }
|
||||
"ui.selection" = { bg = "base02" }
|
||||
"ui.selection.primary" = { bg = "base02" }
|
||||
"ui.statusline" = { fg = "base04", bg = "base01" }
|
||||
"ui.statusline.inactive" = { bg = "base01", fg = "base03" }
|
||||
"ui.statusline.insert" = { fg = "base00", bg = "base0B" }
|
||||
"ui.statusline.normal" = { fg = "base00", bg = "base03" }
|
||||
"ui.statusline.select" = { fg = "base00", bg = "base0F" }
|
||||
"ui.text" = "base05"
|
||||
"ui.text.directory" = "base0D"
|
||||
"ui.text.focus" = "base05"
|
||||
"ui.virtual.indent-guide" = { fg = "base03" }
|
||||
"ui.virtual.inlay-hint" = { fg = "base03" }
|
||||
"ui.virtual.ruler" = { bg = "base01" }
|
||||
"ui.virtual.jump-label" = { fg = "base0A", modifiers = ["bold"] }
|
||||
"ui.virtual.whitespace" = { fg = "base03" }
|
||||
"ui.window" = { bg = "base01" }
|
||||
|
||||
[palette]
|
||||
base00 = "#{{.colors.base00}}" # Default Background
|
||||
base01 = "#{{.colors.base01}}" # Lighter Background (Used for status bars, line number and folding marks)
|
||||
base02 = "#{{.colors.base02}}" # Selection Background
|
||||
base03 = "#{{.colors.base03}}" # Comments, Invisibles, Line Highlighting
|
||||
base04 = "#{{.colors.base04}}" # Dark Foreground (Used for status bars)
|
||||
base05 = "#{{.colors.base05}}" # Default Foreground, Caret, Delimiters, Operators
|
||||
base06 = "#{{.colors.base06}}" # Light Foreground (Not often used)
|
||||
base07 = "#{{.colors.base07}}" # Light Background (Not often used)
|
||||
base08 = "#{{.colors.base08}}" # Variables, XML Tags, Markup Link Text, Markup Lists, Diff Deleted
|
||||
base09 = "#{{.colors.base09}}" # Integers, Boolean, Constants, XML Attributes, Markup Link Url
|
||||
base0A = "#{{.colors.base0A}}" # Classes, Markup Bold, Search Text Background
|
||||
base0B = "#{{.colors.base0B}}" # Strings, Inherited Class, Markup Code, Diff Inserted
|
||||
base0C = "#{{.colors.base0C}}" # Support, Regular Expressions, Escape Characters, Markup Quotes
|
||||
base0D = "#{{.colors.base0D}}" # Functions, Methods, Attribute IDs, Headings
|
||||
base0E = "#{{.colors.base0E}}" # Keywords, Storage, Selector, Markup Italic, Diff Changed
|
||||
base0F = "#{{.colors.base0F}}" # Deprecated, Opening/Closing Embedded Language Tags, e.g. <?php ?>
|
||||
Loading…
Add table
Add a link
Reference in a new issue