Configure helix
This commit is contained in:
parent
c7f0c79334
commit
1c9c72b1b8
4 changed files with 117 additions and 2 deletions
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
# Default colors
|
# Default colors
|
||||||
[colors.primary]
|
[colors.primary]
|
||||||
background = '#1d1f21'
|
background = '#1d2329'
|
||||||
foreground = '#c5c8c6'
|
foreground = '#c5c8c6'
|
||||||
|
|
||||||
[colors.cursor]
|
[colors.cursor]
|
||||||
|
|
|
||||||
4
dotfiles/.config/helix/config.toml
Normal file
4
dotfiles/.config/helix/config.toml
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
theme = "everforest_dark_hc"
|
||||||
|
|
||||||
|
[editor.file-picker]
|
||||||
|
hidden = true
|
||||||
111
dotfiles/.config/helix/themes/everforest_dark_hc.toml
Normal file
111
dotfiles/.config/helix/themes/everforest_dark_hc.toml
Normal file
|
|
@ -0,0 +1,111 @@
|
||||||
|
"type" = "yellow"
|
||||||
|
"constant" = "purple"
|
||||||
|
"constant.numeric" = "purple"
|
||||||
|
"constant.character.escape" = "orange"
|
||||||
|
"string" = "green"
|
||||||
|
"string.regexp" = "blue"
|
||||||
|
"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"
|
||||||
|
"keyword.directive" = "aqua"
|
||||||
|
"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" = { bg = "bg0" }
|
||||||
|
"ui.background.separator" = "grey0"
|
||||||
|
"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.cursorline.primary" = { bg = "bg1" }
|
||||||
|
"ui.cursorline.secondary" = { bg = "bg1" }
|
||||||
|
"ui.selection" = { bg = "bg3" }
|
||||||
|
"ui.linenr" = "grey0"
|
||||||
|
"ui.linenr.selected" = "fg"
|
||||||
|
"ui.statusline" = { fg = "grey2", bg = "bg3" }
|
||||||
|
"ui.statusline.inactive" = { fg = "grey0", bg = "bg1" }
|
||||||
|
"ui.statusline.normal" = { fg = "bg0", bg = "grey2", modifiers = ["bold"] }
|
||||||
|
"ui.statusline.insert" = { fg = "bg0", bg = "yellow", modifiers = ["bold"] }
|
||||||
|
"ui.statusline.select" = { fg = "bg0", bg = "blue", modifiers = ["bold"] }
|
||||||
|
"ui.bufferline" = { fg = "grey0", bg = "bg1" }
|
||||||
|
"ui.bufferline.active" = { fg = "fg", bg = "bg3", modifiers = ["bold"] }
|
||||||
|
"ui.popup" = { fg = "grey2", bg = "bg2" }
|
||||||
|
"ui.window" = { fg = "grey0", bg = "bg0" }
|
||||||
|
"ui.help" = { fg = "fg", bg = "bg2" }
|
||||||
|
"ui.text" = "fg"
|
||||||
|
"ui.text.focus" = "fg"
|
||||||
|
"ui.menu" = { fg = "fg", bg = "bg3" }
|
||||||
|
"ui.menu.selected" = { fg = "bg0", bg = "green" }
|
||||||
|
"ui.virtual.whitespace" = { fg = "bg4" }
|
||||||
|
"ui.virtual.indent-guide" = { fg = "bg4" }
|
||||||
|
"ui.virtual.ruler" = { bg = "bg3" }
|
||||||
|
|
||||||
|
"hint" = "blue"
|
||||||
|
"info" = "aqua"
|
||||||
|
"warning" = "yellow"
|
||||||
|
"error" = "red"
|
||||||
|
"diagnostic" = { underline = { style = "curl" } }
|
||||||
|
"diagnostic.hint" = { underline = { color = "blue", style = "dotted" } }
|
||||||
|
"diagnostic.info" = { underline = { color = "aqua", style = "dotted" } }
|
||||||
|
"diagnostic.warning" = { underline = { color = "yellow", style = "curl" } }
|
||||||
|
"diagnostic.error" = { underline = { color = "red", style = "curl" } }
|
||||||
|
|
||||||
|
[palette]
|
||||||
|
|
||||||
|
bg0 = "#1d2329"
|
||||||
|
bg1 = "#232b30"
|
||||||
|
bg2 = "#2b353a"
|
||||||
|
bg3 = "#323e44"
|
||||||
|
bg4 = "#3a474b"
|
||||||
|
bg5 = "#435150"
|
||||||
|
bg_visual = "#3f2935"
|
||||||
|
bg_red = "#3d2d32"
|
||||||
|
bg_green = "#2f3c33"
|
||||||
|
bg_blue = "#293e4b"
|
||||||
|
bg_yellow = "#39382f"
|
||||||
|
|
||||||
|
fg = "#dbcdac"
|
||||||
|
red = "#ec7678"
|
||||||
|
orange = "#ec966a"
|
||||||
|
yellow = "#e3c277"
|
||||||
|
green = "#a9c678"
|
||||||
|
aqua = "#7cc68e"
|
||||||
|
blue = "#77c1b7"
|
||||||
|
purple = "#de97bb"
|
||||||
|
grey0 = "#6b7974"
|
||||||
|
grey1 = "#849489"
|
||||||
|
grey2 = "#9caba0"
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# vim: set ft=sh:
|
# vim: set ft=sh:
|
||||||
|
|
||||||
export EDITOR=nvim
|
export EDITOR=hx
|
||||||
export GIT_EDITOR=$EDITOR
|
export GIT_EDITOR=$EDITOR
|
||||||
export HISTCONTROL=ignoredups:erasedups # Avoid duplicates
|
export HISTCONTROL=ignoredups:erasedups # Avoid duplicates
|
||||||
export HISTFILESIZE=100000000 # big big history
|
export HISTFILESIZE=100000000 # big big history
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue