From 82ee1a200de5a10500ad46d03992c05621e224f4 Mon Sep 17 00:00:00 2001 From: notohh Date: Tue, 20 Dec 2022 19:09:03 -0500 Subject: [PATCH] nvim => helix --- helix/.config/helix/config.toml | 14 ++ helix/.config/helix/languages.toml | 0 .../themes/default/catppuccin_frappe.toml | 146 ++++++++++++++++++ .../themes/default/catppuccin_latte.toml | 146 ++++++++++++++++++ .../themes/default/catppuccin_macchiato.toml | 146 ++++++++++++++++++ .../themes/default/catppuccin_mocha.toml | 146 ++++++++++++++++++ .../themes/no_italics/catppuccin_frappe.toml | 137 ++++++++++++++++ .../themes/no_italics/catppuccin_latte.toml | 137 ++++++++++++++++ .../no_italics/catppuccin_macchiato.toml | 137 ++++++++++++++++ .../themes/no_italics/catppuccin_mocha.toml | 137 ++++++++++++++++ nushell/.config/nushell/config.nu | 2 +- nvim/.config/nvim | 1 - 12 files changed, 1147 insertions(+), 2 deletions(-) create mode 100644 helix/.config/helix/config.toml create mode 100644 helix/.config/helix/languages.toml create mode 100644 helix/.config/helix/themes/default/catppuccin_frappe.toml create mode 100644 helix/.config/helix/themes/default/catppuccin_latte.toml create mode 100644 helix/.config/helix/themes/default/catppuccin_macchiato.toml create mode 100644 helix/.config/helix/themes/default/catppuccin_mocha.toml create mode 100644 helix/.config/helix/themes/no_italics/catppuccin_frappe.toml create mode 100644 helix/.config/helix/themes/no_italics/catppuccin_latte.toml create mode 100644 helix/.config/helix/themes/no_italics/catppuccin_macchiato.toml create mode 100644 helix/.config/helix/themes/no_italics/catppuccin_mocha.toml delete mode 160000 nvim/.config/nvim diff --git a/helix/.config/helix/config.toml b/helix/.config/helix/config.toml new file mode 100644 index 0000000..be8be30 --- /dev/null +++ b/helix/.config/helix/config.toml @@ -0,0 +1,14 @@ +theme = "catppuccin_mocha" + +[editor] +line-number = "relative" +cursorline = true +color-modes = true + +[editor.cursor-shape] +insert = "bar" +normal = "block" +select = "underline" + +[editor.indent-guides] +render = true diff --git a/helix/.config/helix/languages.toml b/helix/.config/helix/languages.toml new file mode 100644 index 0000000..e69de29 diff --git a/helix/.config/helix/themes/default/catppuccin_frappe.toml b/helix/.config/helix/themes/default/catppuccin_frappe.toml new file mode 100644 index 0000000..b9782ee --- /dev/null +++ b/helix/.config/helix/themes/default/catppuccin_frappe.toml @@ -0,0 +1,146 @@ +# Syntax highlighting +# ------------------- +"type" = "yellow" + +"constructor" = "sapphire" + +"constant" = "peach" +"constant.builtin" = "peach" +"constant.character" = "teal" +"constant.character.escape" = "pink" + +"string" = "green" +"string.regexp" = "peach" +"string.special" = "blue" + +"comment" = { fg = "surface2", modifiers = ["italic"] } + +"variable" = "text" +"variable.parameter" = { fg = "maroon", modifiers = ["italic"] } +"variable.builtin" = "red" +"variable.other.member" = "teal" + +"label" = "sapphire" # used for lifetimes + +"punctuation" = "overlay2" +"punctuation.special" = "sky" + +"keyword" = "mauve" +"keyword.control.conditional" = { fg = "mauve", modifiers = ["italic"] } + +"operator" = "sky" + +"function" = "blue" +"function.builtin" = "peach" +"function.macro" = "mauve" + +"tag" = "mauve" + +"namespace" = { fg = "blue", modifiers = ["italic"] } + +"special" = "blue" # fuzzy highlight + +"markup.heading.marker" = { fg = "peach", modifiers = ["bold"] } +"markup.heading.1" = "lavender" +"markup.heading.2" = "mauve" +"markup.heading.3" = "green" +"markup.heading.4" = "yellow" +"markup.heading.5" = "pink" +"markup.heading.6" = "teal" +"markup.list" = "mauve" +"markup.bold" = { modifiers = ["bold"] } +"markup.italic" = { modifiers = ["italic"] } +"markup.link.url" = { fg = "rosewater", modifiers = ["italic", "underlined"] } +"markup.link.text" = "blue" +"markup.raw" = "flamingo" + +"diff.plus" = "green" +"diff.minus" = "red" +"diff.delta" = "blue" + +# User Interface +# -------------- +"ui.background" = { fg = "text", bg = "base" } + +"ui.linenr" = { fg = "surface1" } +"ui.linenr.selected" = { fg = "lavender" } + +"ui.statusline" = { fg = "text", bg = "mantle" } +"ui.statusline.inactive" = { fg = "surface2", bg = "mantle" } +"ui.statusline.normal" = { fg = "base", bg = "lavender", modifiers = ["bold"] } +"ui.statusline.insert" = { fg = "base", bg = "green", modifiers = ["bold"] } +"ui.statusline.select" = { fg = "base", bg = "flamingo", modifiers = ["bold"] } + +"ui.popup" = { fg = "text", bg = "surface0" } +"ui.window" = { fg = "crust" } +"ui.help" = { fg = "overlay2", bg = "surface0" } + +"ui.bufferline" = { fg = "surface1", bg = "mantle" } +"ui.bufferline.active" = { fg = "text", bg = "base", modifiers = ["bold", "italic"] } +"ui.bufferline.background" = { bg = "surface0" } + +"ui.text" = "text" +"ui.text.focus" = { fg = "text", bg = "surface0", modifiers = ["bold"] } + +"ui.virtual" = "overlay0" +"ui.virtual.ruler" = { bg = "surface0" } +"ui.virtual.indent-guide" = "surface0" + +"ui.selection" = { bg = "surface1" } + +"ui.cursor" = { fg = "base", bg = "secondary_cursor" } +"ui.cursor.primary" = { fg = "base", bg = "rosewater" } +"ui.cursor.match" = { fg = "peach", modifiers = ["bold"] } + +"ui.cursorline.primary" = { bg = "cursorline" } + +"ui.highlight" = { bg = "surface1", modifiers = ["bold"] } + +"ui.menu" = { fg = "overlay2", bg = "surface0" } +"ui.menu.selected" = { fg = "text", bg = "surface1", modifiers = ["bold"] } + +diagnostic = { modifiers = ["underlined"] } +"diagnostic.error" = "red" +"diagnostic.warn" = "yellow" +"diagnostic.info" = "sky" +"diagnostic.hint" = "teal" + +error = "red" +warning = "yellow" +info = "sky" +hint = "teal" + +[palette] +# catppuccin palette colors +rosewater = "#f2d5cf" +flamingo = "#eebebe" +pink = "#f4b8e4" +mauve = "#ca9ee6" +red = "#e78284" +maroon = "#ea999c" +peach = "#ef9f76" +yellow = "#e5c890" +green = "#a6d189" +teal = "#81c8be" +sky = "#99d1db" +sapphire = "#85c1dc" +blue = "#8caaee" +lavender = "#babbf1" + +text = "#c6d0f5" +subtext1 = "#b5bfe2" +subtext0 = "#a5adce" +overlay2 = "#949cbb" +overlay1 = "#838ba7" +overlay0 = "#737994" +surface2 = "#626880" +surface1 = "#51576d" +surface0 = "#414559" + +base = "#303446" +mantle = "#292c3c" +crust = "#232634" + +# derived colors by blending existing palette colors +cursorline = "#3b3f52" +secondary_cursor = "#b8a5a6" \ No newline at end of file diff --git a/helix/.config/helix/themes/default/catppuccin_latte.toml b/helix/.config/helix/themes/default/catppuccin_latte.toml new file mode 100644 index 0000000..ab01ee0 --- /dev/null +++ b/helix/.config/helix/themes/default/catppuccin_latte.toml @@ -0,0 +1,146 @@ +# Syntax highlighting +# ------------------- +"type" = "yellow" + +"constructor" = "sapphire" + +"constant" = "peach" +"constant.builtin" = "peach" +"constant.character" = "teal" +"constant.character.escape" = "pink" + +"string" = "green" +"string.regexp" = "peach" +"string.special" = "blue" + +"comment" = { fg = "surface2", modifiers = ["italic"] } + +"variable" = "text" +"variable.parameter" = { fg = "maroon", modifiers = ["italic"] } +"variable.builtin" = "red" +"variable.other.member" = "teal" + +"label" = "sapphire" # used for lifetimes + +"punctuation" = "overlay2" +"punctuation.special" = "sky" + +"keyword" = "mauve" +"keyword.control.conditional" = { fg = "mauve", modifiers = ["italic"] } + +"operator" = "sky" + +"function" = "blue" +"function.builtin" = "peach" +"function.macro" = "mauve" + +"tag" = "mauve" + +"namespace" = { fg = "blue", modifiers = ["italic"] } + +"special" = "blue" # fuzzy highlight + +"markup.heading.marker" = { fg = "peach", modifiers = ["bold"] } +"markup.heading.1" = "lavender" +"markup.heading.2" = "mauve" +"markup.heading.3" = "green" +"markup.heading.4" = "yellow" +"markup.heading.5" = "pink" +"markup.heading.6" = "teal" +"markup.list" = "mauve" +"markup.bold" = { modifiers = ["bold"] } +"markup.italic" = { modifiers = ["italic"] } +"markup.link.url" = { fg = "rosewater", modifiers = ["italic", "underlined"] } +"markup.link.text" = "blue" +"markup.raw" = "flamingo" + +"diff.plus" = "green" +"diff.minus" = "red" +"diff.delta" = "blue" + +# User Interface +# -------------- +"ui.background" = { fg = "text", bg = "base" } + +"ui.linenr" = { fg = "base0" } +"ui.linenr.selected" = { fg = "lavender" } + +"ui.statusline" = { fg = "text", bg = "mantle" } +"ui.statusline.inactive" = { fg = "surface2", bg = "mantle" } +"ui.statusline.normal" = { fg = "base", bg = "lavender", modifiers = ["bold"] } +"ui.statusline.insert" = { fg = "base", bg = "green", modifiers = ["bold"] } +"ui.statusline.select" = { fg = "base", bg = "flamingo", modifiers = ["bold"] } + +"ui.popup" = { fg = "text", bg = "surface0" } +"ui.window" = { fg = "crust" } +"ui.help" = { fg = "overlay2", bg = "surface0" } + +"ui.bufferline" = { fg = "surface1", bg = "mantle" } +"ui.bufferline.active" = { fg = "text", bg = "base", modifiers = ["bold", "italic"] } +"ui.bufferline.background" = { bg = "surface0" } + +"ui.text" = "text" +"ui.text.focus" = { fg = "text", bg = "surface0", modifiers = ["bold"] } + +"ui.virtual" = "overlay0" +"ui.virtual.ruler" = { bg = "surface0" } +"ui.virtual.indent-guide" = "surface0" + +"ui.selection" = { bg = "surface1" } + +"ui.cursor" = { fg = "base", bg = "secondary_cursor" } +"ui.cursor.primary" = { fg = "base", bg = "rosewater" } +"ui.cursor.match" = { fg = "peach", modifiers = ["bold"] } + +"ui.cursorline.primary" = { bg = "cursorline" } + +"ui.highlight" = { bg = "surface1", modifiers = ["bold"] } + +"ui.menu" = { fg = "overlay2", bg = "surface0" } +"ui.menu.selected" = { fg = "text", bg = "surface1", modifiers = ["bold"] } + +diagnostic = { modifiers = ["underlined"] } +"diagnostic.error" = "red" +"diagnostic.warn" = "yellow" +"diagnostic.info" = "sky" +"diagnostic.hint" = "teal" + +error = "red" +warning = "yellow" +info = "sky" +hint = "teal" + +[palette] +# catppuccin palette colors +rosewater = "#dc8a78" +flamingo = "#dd7878" +pink = "#ea76cb" +mauve = "#8839ef" +red = "#d20f39" +maroon = "#e64553" +peach = "#fe640b" +yellow = "#df8e1d" +green = "#40a02b" +teal = "#179299" +sky = "#04a5e5" +sapphire = "#209fb5" +blue = "#1e66f5" +lavender = "#7287fd" + +text = "#4c4f69" +subtext1 = "#5c5f77" +subtext0 = "#6c6f85" +overlay2 = "#7c7f93" +overlay1 = "#8c8fa1" +overlay0 = "#9ca0b0" +surface2 = "#acb0be" +surface1 = "#bcc0cc" +surface0 = "#ccd0da" + +base = "#eff1f5" +mantle = "#e6e9ef" +crust = "#dce0e8" + +# derived colors by blending existing palette colors +cursorline = "#e9ebf1" +secondary_cursor = "#e2a99e" \ No newline at end of file diff --git a/helix/.config/helix/themes/default/catppuccin_macchiato.toml b/helix/.config/helix/themes/default/catppuccin_macchiato.toml new file mode 100644 index 0000000..f36acc6 --- /dev/null +++ b/helix/.config/helix/themes/default/catppuccin_macchiato.toml @@ -0,0 +1,146 @@ +# Syntax highlighting +# ------------------- +"type" = "yellow" + +"constructor" = "sapphire" + +"constant" = "peach" +"constant.builtin" = "peach" +"constant.character" = "teal" +"constant.character.escape" = "pink" + +"string" = "green" +"string.regexp" = "peach" +"string.special" = "blue" + +"comment" = { fg = "surface2", modifiers = ["italic"] } + +"variable" = "text" +"variable.parameter" = { fg = "maroon", modifiers = ["italic"] } +"variable.builtin" = "red" +"variable.other.member" = "teal" + +"label" = "sapphire" # used for lifetimes + +"punctuation" = "overlay2" +"punctuation.special" = "sky" + +"keyword" = "mauve" +"keyword.control.conditional" = { fg = "mauve", modifiers = ["italic"] } + +"operator" = "sky" + +"function" = "blue" +"function.builtin" = "peach" +"function.macro" = "mauve" + +"tag" = "mauve" + +"namespace" = { fg = "blue", modifiers = ["italic"] } + +"special" = "blue" # fuzzy highlight + +"markup.heading.marker" = { fg = "peach", modifiers = ["bold"] } +"markup.heading.1" = "lavender" +"markup.heading.2" = "mauve" +"markup.heading.3" = "green" +"markup.heading.4" = "yellow" +"markup.heading.5" = "pink" +"markup.heading.6" = "teal" +"markup.list" = "mauve" +"markup.bold" = { modifiers = ["bold"] } +"markup.italic" = { modifiers = ["italic"] } +"markup.link.url" = { fg = "rosewater", modifiers = ["italic", "underlined"] } +"markup.link.text" = "blue" +"markup.raw" = "flamingo" + +"diff.plus" = "green" +"diff.minus" = "red" +"diff.delta" = "blue" + +# User Interface +# -------------- +"ui.background" = { fg = "text", bg = "base" } + +"ui.linenr" = { fg = "surface1" } +"ui.linenr.selected" = { fg = "lavender" } + +"ui.statusline" = { fg = "text", bg = "mantle" } +"ui.statusline.inactive" = { fg = "surface2", bg = "mantle" } +"ui.statusline.normal" = { fg = "base", bg = "lavender", modifiers = ["bold"] } +"ui.statusline.insert" = { fg = "base", bg = "green", modifiers = ["bold"] } +"ui.statusline.select" = { fg = "base", bg = "flamingo", modifiers = ["bold"] } + +"ui.popup" = { fg = "text", bg = "surface0" } +"ui.window" = { fg = "crust" } +"ui.help" = { fg = "overlay2", bg = "surface0" } + +"ui.bufferline" = { fg = "surface1", bg = "mantle" } +"ui.bufferline.active" = { fg = "text", bg = "base", modifiers = ["bold", "italic"] } +"ui.bufferline.background" = { bg = "surface0" } + +"ui.text" = "text" +"ui.text.focus" = { fg = "text", bg = "surface0", modifiers = ["bold"] } + +"ui.virtual" = "overlay0" +"ui.virtual.ruler" = { bg = "surface0" } +"ui.virtual.indent-guide" = "surface0" + +"ui.selection" = { bg = "surface1" } + +"ui.cursor" = { fg = "base", bg = "secondary_cursor" } +"ui.cursor.primary" = { fg = "base", bg = "rosewater" } +"ui.cursor.match" = { fg = "peach", modifiers = ["bold"] } + +"ui.cursorline.primary" = { bg = "cursorline" } + +"ui.highlight" = { bg = "surface1", modifiers = ["bold"] } + +"ui.menu" = { fg = "overlay2", bg = "surface0" } +"ui.menu.selected" = { fg = "text", bg = "surface1", modifiers = ["bold"] } + +diagnostic = { modifiers = ["underlined"] } +"diagnostic.error" = "red" +"diagnostic.warn" = "yellow" +"diagnostic.info" = "sky" +"diagnostic.hint" = "teal" + +error = "red" +warning = "yellow" +info = "sky" +hint = "teal" + +[palette] +# catppuccin palette colors +rosewater = "#f4dbd6" +flamingo = "#f0c6c6" +pink = "#f5bde6" +mauve = "#c6a0f6" +red = "#ed8796" +maroon = "#ee99a0" +peach = "#f5a97f" +yellow = "#eed49f" +green = "#a6da95" +teal = "#8bd5ca" +sky = "#91d7e3" +sapphire = "#7dc4e4" +blue = "#8aadf4" +lavender = "#b7bdf8" + +text = "#cad3f5" +subtext1 = "#b8c0e0" +subtext0 = "#a5adcb" +overlay2 = "#939ab7" +overlay1 = "#8087a2" +overlay0 = "#6e738d" +surface2 = "#5b6078" +surface1 = "#494d64" +surface0 = "#363a4f" + +base = "#24273a" +mantle = "#1e2030" +crust = "#181926" + +# derived colors by blending existing palette colors +cursorline = "#303347" +secondary_cursor = "#b6a5a7" \ No newline at end of file diff --git a/helix/.config/helix/themes/default/catppuccin_mocha.toml b/helix/.config/helix/themes/default/catppuccin_mocha.toml new file mode 100644 index 0000000..0fd7757 --- /dev/null +++ b/helix/.config/helix/themes/default/catppuccin_mocha.toml @@ -0,0 +1,146 @@ +# Syntax highlighting +# ------------------- +"type" = "yellow" + +"constructor" = "sapphire" + +"constant" = "peach" +"constant.builtin" = "peach" +"constant.character" = "teal" +"constant.character.escape" = "pink" + +"string" = "green" +"string.regexp" = "peach" +"string.special" = "blue" + +"comment" = { fg = "surface2", modifiers = ["italic"] } + +"variable" = "text" +"variable.parameter" = { fg = "maroon", modifiers = ["italic"] } +"variable.builtin" = "red" +"variable.other.member" = "teal" + +"label" = "sapphire" # used for lifetimes + +"punctuation" = "overlay2" +"punctuation.special" = "sky" + +"keyword" = "mauve" +"keyword.control.conditional" = { fg = "mauve", modifiers = ["italic"] } + +"operator" = "sky" + +"function" = "blue" +"function.builtin" = "peach" +"function.macro" = "mauve" + +"tag" = "mauve" + +"namespace" = { fg = "blue", modifiers = ["italic"] } + +"special" = "blue" # fuzzy highlight + +"markup.heading.marker" = { fg = "peach", modifiers = ["bold"] } +"markup.heading.1" = "lavender" +"markup.heading.2" = "mauve" +"markup.heading.3" = "green" +"markup.heading.4" = "yellow" +"markup.heading.5" = "pink" +"markup.heading.6" = "teal" +"markup.list" = "mauve" +"markup.bold" = { modifiers = ["bold"] } +"markup.italic" = { modifiers = ["italic"] } +"markup.link.url" = { fg = "rosewater", modifiers = ["italic", "underlined"] } +"markup.link.text" = "blue" +"markup.raw" = "flamingo" + +"diff.plus" = "green" +"diff.minus" = "red" +"diff.delta" = "blue" + +# User Interface +# -------------- +"ui.background" = { fg = "text", bg = "base" } + +"ui.linenr" = { fg = "surface1" } +"ui.linenr.selected" = { fg = "lavender" } + +"ui.statusline" = { fg = "text", bg = "mantle" } +"ui.statusline.inactive" = { fg = "surface2", bg = "mantle" } +"ui.statusline.normal" = { fg = "base", bg = "lavender", modifiers = ["bold"] } +"ui.statusline.insert" = { fg = "base", bg = "green", modifiers = ["bold"] } +"ui.statusline.select" = { fg = "base", bg = "flamingo", modifiers = ["bold"] } + +"ui.popup" = { fg = "text", bg = "surface0" } +"ui.window" = { fg = "crust" } +"ui.help" = { fg = "overlay2", bg = "surface0" } + +"ui.bufferline" = { fg = "surface1", bg = "mantle" } +"ui.bufferline.active" = { fg = "text", bg = "base", modifiers = ["bold", "italic"] } +"ui.bufferline.background" = { bg = "surface0" } + +"ui.text" = "text" +"ui.text.focus" = { fg = "text", bg = "surface0", modifiers = ["bold"] } + +"ui.virtual" = "overlay0" +"ui.virtual.ruler" = { bg = "surface0" } +"ui.virtual.indent-guide" = "surface0" + +"ui.selection" = { bg = "surface1" } + +"ui.cursor" = { fg = "base", bg = "secondary_cursor" } +"ui.cursor.primary" = { fg = "base", bg = "rosewater" } +"ui.cursor.match" = { fg = "peach", modifiers = ["bold"] } + +"ui.cursorline.primary" = { bg = "cursorline" } + +"ui.highlight" = { bg = "surface1", modifiers = ["bold"] } + +"ui.menu" = { fg = "overlay2", bg = "surface0" } +"ui.menu.selected" = { fg = "text", bg = "surface1", modifiers = ["bold"] } + +diagnostic = { modifiers = ["underlined"] } +"diagnostic.error" = "red" +"diagnostic.warn" = "yellow" +"diagnostic.info" = "sky" +"diagnostic.hint" = "teal" + +error = "red" +warning = "yellow" +info = "sky" +hint = "teal" + +[palette] +# catppuccin palette colors +rosewater = "#f5e0dc" +flamingo = "#f2cdcd" +pink = "#f5c2e7" +mauve = "#cba6f7" +red = "#f38ba8" +maroon = "#eba0ac" +peach = "#fab387" +yellow = "#f9e2af" +green = "#a6e3a1" +teal = "#94e2d5" +sky = "#89dceb" +sapphire = "#74c7ec" +blue = "#89b4fa" +lavender = "#b4befe" + +text = "#cdd6f4" +subtext1 = "#bac2de" +subtext0 = "#a6adc8" +overlay2 = "#9399b2" +overlay1 = "#7f849c" +overlay0 = "#6c7086" +surface2 = "#585b70" +surface1 = "#45475a" +surface0 = "#313244" + +base = "#1e1e2e" +mantle = "#181825" +crust = "#11111b" + +# derived colors by blending existing palette colors +cursorline = "#2a2b3c" +secondary_cursor = "#b5a6a8" \ No newline at end of file diff --git a/helix/.config/helix/themes/no_italics/catppuccin_frappe.toml b/helix/.config/helix/themes/no_italics/catppuccin_frappe.toml new file mode 100644 index 0000000..04b3ccd --- /dev/null +++ b/helix/.config/helix/themes/no_italics/catppuccin_frappe.toml @@ -0,0 +1,137 @@ +# Syntax highlighting +# ------------------- +"type" = "yellow" +"type.enum.variant" = "peach" + +"constructor" = "sapphire" + +"constant" = "peach" +"constant.character" = "teal" +"constant.character.escape" = "pink" + +"string" = "green" +"string.regexp" = "peach" +"string.special" = "pink" + +"comment" = { fg = "overlay1" } + +"variable" = "text" +"variable.parameter" = { fg = "maroon" } +"variable.builtin" = "red" +"variable.other.member" = "teal" + +"label" = "sapphire" # used for lifetimes + +"punctuation" = "overlay2" + +"keyword" = "mauve" +"keyword.control.conditional" = { fg = "mauve" } + +"operator" = "sky" + +"function" = "blue" +"function.builtin" = "peach" +"function.macro" = "teal" + +"tag" = "mauve" + +"namespace" = { fg = "blue" } + +"special" = "blue" # fuzzy highlight + +"markup.heading.marker" = { fg = "peach", modifiers = ["bold"] } +"markup.heading.1" = "lavender" +"markup.heading.2" = "mauve" +"markup.heading.3" = "green" +"markup.heading.4" = "yellow" +"markup.heading.5" = "pink" +"markup.heading.6" = "teal" +"markup.list" = "mauve" +"markup.bold" = { modifiers = ["bold"] } +"markup.italic" = { modifiers = ["italic"] } +"markup.link.url" = { fg = "peach", modifiers = ["underlined"] } +"markup.link.text" = "blue" +"markup.raw" = "flamingo" + +"diff.plus" = "green" +"diff.minus" = "red" +"diff.delta" = "yellow" + +# User Interface +# -------------- +"ui.background" = { fg = "text", bg = "base" } + +"ui.linenr" = { fg = "surface1" } +"ui.linenr.selected" = { fg = "lavender" } + +"ui.statusline" = { fg = "overlay1", bg = "surface0" } +"ui.statusline.inactive" = { fg = "overlay1", bg = "mantle" } +"ui.statusline.normal" = { fg = "surface0", bg = "lavender", modifiers = ["bold"] } +"ui.statusline.insert" = { fg = "surface0", bg = "green", modifiers = ["bold"] } +"ui.statusline.select" = { fg = "surface0", bg = "flamingo", modifiers = ["bold"] } + +"ui.popup" = { fg = "text", bg = "surface0" } +"ui.window" = { fg = "crust" } +"ui.help" = { fg = "overlay2", bg = "surface0" } + +"ui.text" = "text" +"ui.text.focus" = { fg = "text", bg = "surface0", modifiers = ["bold"] } + +"ui.virtual" = "overlay0" +"ui.virtual.ruler" = { bg = "surface0" } +"ui.virtual.indent-guide" = "surface0" + +"ui.selection" = { bg = "surface1" } + +"ui.cursor" = { fg = "base", bg = "secondary_cursor" } +"ui.cursor.primary" = { fg = "base", bg = "rosewater" } +"ui.cursor.match" = { fg = "peach", modifiers = ["bold"] } + +"ui.cursorline.primary" = { bg = "cursorline" } + +"ui.highlight" = { bg = "surface1" } + +"ui.menu" = { fg = "overlay2", bg = "surface0" } +"ui.menu.selected" = { fg = "text", bg = "surface1", modifiers = ["bold"] } + +diagnostic = { modifiers = ["underlined"] } + +error = "red" +warning = "yellow" +info = "sky" +hint = "teal" + +[palette] +# catppuccin palette colors +rosewater = "#f2d5cf" +flamingo = "#eebebe" +pink = "#f4b8e4" +mauve = "#ca9ee6" +red = "#e78284" +maroon = "#ea999c" +peach = "#ef9f76" +yellow = "#e5c890" +green = "#a6d189" +teal = "#81c8be" +sky = "#99d1db" +sapphire = "#85c1dc" +blue = "#8caaee" +lavender = "#babbf1" + +text = "#c6d0f5" +subtext1 = "#b5bfe2" +subtext0 = "#a5adce" +overlay2 = "#949cbb" +overlay1 = "#838ba7" +overlay0 = "#737994" +surface2 = "#626880" +surface1 = "#51576d" +surface0 = "#414559" + +base = "#303446" +mantle = "#292c3c" +crust = "#232634" + +# derived colors by blending existing palette colors +cursorline = "#3b3f52" +secondary_cursor = "#b8a5a6" \ No newline at end of file diff --git a/helix/.config/helix/themes/no_italics/catppuccin_latte.toml b/helix/.config/helix/themes/no_italics/catppuccin_latte.toml new file mode 100644 index 0000000..87ec6f0 --- /dev/null +++ b/helix/.config/helix/themes/no_italics/catppuccin_latte.toml @@ -0,0 +1,137 @@ +# Syntax highlighting +# ------------------- +"type" = "yellow" +"type.enum.variant" = "peach" + +"constructor" = "sapphire" + +"constant" = "peach" +"constant.character" = "teal" +"constant.character.escape" = "pink" + +"string" = "green" +"string.regexp" = "peach" +"string.special" = "pink" + +"comment" = { fg = "overlay1" } + +"variable" = "text" +"variable.parameter" = { fg = "maroon" } +"variable.builtin" = "red" +"variable.other.member" = "teal" + +"label" = "sapphire" # used for lifetimes + +"punctuation" = "overlay2" + +"keyword" = "mauve" +"keyword.control.conditional" = { fg = "mauve" } + +"operator" = "sky" + +"function" = "blue" +"function.builtin" = "peach" +"function.macro" = "teal" + +"tag" = "mauve" + +"namespace" = { fg = "blue" } + +"special" = "blue" # fuzzy highlight + +"markup.heading.marker" = { fg = "peach", modifiers = ["bold"] } +"markup.heading.1" = "lavender" +"markup.heading.2" = "mauve" +"markup.heading.3" = "green" +"markup.heading.4" = "yellow" +"markup.heading.5" = "pink" +"markup.heading.6" = "teal" +"markup.list" = "mauve" +"markup.bold" = { modifiers = ["bold"] } +"markup.italic" = { modifiers = ["italic"] } +"markup.link.url" = { fg = "peach", modifiers = ["underlined"] } +"markup.link.text" = "blue" +"markup.raw" = "flamingo" + +"diff.plus" = "green" +"diff.minus" = "red" +"diff.delta" = "yellow" + +# User Interface +# -------------- +"ui.background" = { fg = "text", bg = "base" } + +"ui.linenr" = { fg = "surface1" } +"ui.linenr.selected" = { fg = "lavender" } + +"ui.statusline" = { fg = "overlay1", bg = "surface0" } +"ui.statusline.inactive" = { fg = "overlay1", bg = "mantle" } +"ui.statusline.normal" = { fg = "surface0", bg = "lavender", modifiers = ["bold"] } +"ui.statusline.insert" = { fg = "surface0", bg = "green", modifiers = ["bold"] } +"ui.statusline.select" = { fg = "surface0", bg = "flamingo", modifiers = ["bold"] } + +"ui.popup" = { fg = "text", bg = "surface0" } +"ui.window" = { fg = "crust" } +"ui.help" = { fg = "overlay2", bg = "surface0" } + +"ui.text" = "text" +"ui.text.focus" = { fg = "text", bg = "surface0", modifiers = ["bold"] } + +"ui.virtual" = "overlay0" +"ui.virtual.ruler" = { bg = "surface0" } +"ui.virtual.indent-guide" = "surface0" + +"ui.selection" = { bg = "surface1" } + +"ui.cursor" = { fg = "base", bg = "secondary_cursor" } +"ui.cursor.primary" = { fg = "base", bg = "rosewater" } +"ui.cursor.match" = { fg = "peach", modifiers = ["bold"] } + +"ui.cursorline.primary" = { bg = "cursorline" } + +"ui.highlight" = { bg = "surface1" } + +"ui.menu" = { fg = "overlay2", bg = "surface0" } +"ui.menu.selected" = { fg = "text", bg = "surface1", modifiers = ["bold"] } + +diagnostic = { modifiers = ["underlined"] } + +error = "red" +warning = "yellow" +info = "sky" +hint = "teal" + +[palette] +# catppuccin palette colors +rosewater = "#dc8a78" +flamingo = "#dd7878" +pink = "#ea76cb" +mauve = "#8839ef" +red = "#d20f39" +maroon = "#e64553" +peach = "#fe640b" +yellow = "#df8e1d" +green = "#40a02b" +teal = "#179299" +sky = "#04a5e5" +sapphire = "#209fb5" +blue = "#1e66f5" +lavender = "#7287fd" + +text = "#4c4f69" +subtext1 = "#5c5f77" +subtext0 = "#6c6f85" +overlay2 = "#7c7f93" +overlay1 = "#8c8fa1" +overlay0 = "#9ca0b0" +surface2 = "#acb0be" +surface1 = "#bcc0cc" +surface0 = "#ccd0da" + +base = "#eff1f5" +mantle = "#e6e9ef" +crust = "#dce0e8" + +# derived colors by blending existing palette colors +cursorline = "#e9ebf1" +secondary_cursor = "#e2a99e" \ No newline at end of file diff --git a/helix/.config/helix/themes/no_italics/catppuccin_macchiato.toml b/helix/.config/helix/themes/no_italics/catppuccin_macchiato.toml new file mode 100644 index 0000000..aea15d7 --- /dev/null +++ b/helix/.config/helix/themes/no_italics/catppuccin_macchiato.toml @@ -0,0 +1,137 @@ +# Syntax highlighting +# ------------------- +"type" = "yellow" +"type.enum.variant" = "peach" + +"constructor" = "sapphire" + +"constant" = "peach" +"constant.character" = "teal" +"constant.character.escape" = "pink" + +"string" = "green" +"string.regexp" = "peach" +"string.special" = "pink" + +"comment" = { fg = "overlay1" } + +"variable" = "text" +"variable.parameter" = { fg = "maroon" } +"variable.builtin" = "red" +"variable.other.member" = "teal" + +"label" = "sapphire" # used for lifetimes + +"punctuation" = "overlay2" + +"keyword" = "mauve" +"keyword.control.conditional" = { fg = "mauve" } + +"operator" = "sky" + +"function" = "blue" +"function.builtin" = "peach" +"function.macro" = "teal" + +"tag" = "mauve" + +"namespace" = { fg = "blue" } + +"special" = "blue" # fuzzy highlight + +"markup.heading.marker" = { fg = "peach", modifiers = ["bold"] } +"markup.heading.1" = "lavender" +"markup.heading.2" = "mauve" +"markup.heading.3" = "green" +"markup.heading.4" = "yellow" +"markup.heading.5" = "pink" +"markup.heading.6" = "teal" +"markup.list" = "mauve" +"markup.bold" = { modifiers = ["bold"] } +"markup.italic" = { modifiers = ["italic"] } +"markup.link.url" = { fg = "peach", modifiers = ["underlined"] } +"markup.link.text" = "blue" +"markup.raw" = "flamingo" + +"diff.plus" = "green" +"diff.minus" = "red" +"diff.delta" = "yellow" + +# User Interface +# -------------- +"ui.background" = { fg = "text", bg = "base" } + +"ui.linenr" = { fg = "surface1" } +"ui.linenr.selected" = { fg = "lavender" } + +"ui.statusline" = { fg = "overlay1", bg = "surface0" } +"ui.statusline.inactive" = { fg = "overlay1", bg = "mantle" } +"ui.statusline.normal" = { fg = "surface0", bg = "lavender", modifiers = ["bold"] } +"ui.statusline.insert" = { fg = "surface0", bg = "green", modifiers = ["bold"] } +"ui.statusline.select" = { fg = "surface0", bg = "flamingo", modifiers = ["bold"] } + +"ui.popup" = { fg = "text", bg = "surface0" } +"ui.window" = { fg = "crust" } +"ui.help" = { fg = "overlay2", bg = "surface0" } + +"ui.text" = "text" +"ui.text.focus" = { fg = "text", bg = "surface0", modifiers = ["bold"] } + +"ui.virtual" = "overlay0" +"ui.virtual.ruler" = { bg = "surface0" } +"ui.virtual.indent-guide" = "surface0" + +"ui.selection" = { bg = "surface1" } + +"ui.cursor" = { fg = "base", bg = "secondary_cursor" } +"ui.cursor.primary" = { fg = "base", bg = "rosewater" } +"ui.cursor.match" = { fg = "peach", modifiers = ["bold"] } + +"ui.cursorline.primary" = { bg = "cursorline" } + +"ui.highlight" = { bg = "surface1" } + +"ui.menu" = { fg = "overlay2", bg = "surface0" } +"ui.menu.selected" = { fg = "text", bg = "surface1", modifiers = ["bold"] } + +diagnostic = { modifiers = ["underlined"] } + +error = "red" +warning = "yellow" +info = "sky" +hint = "teal" + +[palette] +# catppuccin palette colors +rosewater = "#f4dbd6" +flamingo = "#f0c6c6" +pink = "#f5bde6" +mauve = "#c6a0f6" +red = "#ed8796" +maroon = "#ee99a0" +peach = "#f5a97f" +yellow = "#eed49f" +green = "#a6da95" +teal = "#8bd5ca" +sky = "#91d7e3" +sapphire = "#7dc4e4" +blue = "#8aadf4" +lavender = "#b7bdf8" + +text = "#cad3f5" +subtext1 = "#b8c0e0" +subtext0 = "#a5adcb" +overlay2 = "#939ab7" +overlay1 = "#8087a2" +overlay0 = "#6e738d" +surface2 = "#5b6078" +surface1 = "#494d64" +surface0 = "#363a4f" + +base = "#24273a" +mantle = "#1e2030" +crust = "#181926" + +# derived colors by blending existing palette colors +cursorline = "#303347" +secondary_cursor = "#b6a5a7" \ No newline at end of file diff --git a/helix/.config/helix/themes/no_italics/catppuccin_mocha.toml b/helix/.config/helix/themes/no_italics/catppuccin_mocha.toml new file mode 100644 index 0000000..e2028f5 --- /dev/null +++ b/helix/.config/helix/themes/no_italics/catppuccin_mocha.toml @@ -0,0 +1,137 @@ +# Syntax highlighting +# ------------------- +"type" = "yellow" +"type.enum.variant" = "peach" + +"constructor" = "sapphire" + +"constant" = "peach" +"constant.character" = "teal" +"constant.character.escape" = "pink" + +"string" = "green" +"string.regexp" = "peach" +"string.special" = "pink" + +"comment" = { fg = "overlay1" } + +"variable" = "text" +"variable.parameter" = { fg = "maroon" } +"variable.builtin" = "red" +"variable.other.member" = "teal" + +"label" = "sapphire" # used for lifetimes + +"punctuation" = "overlay2" + +"keyword" = "mauve" +"keyword.control.conditional" = { fg = "mauve" } + +"operator" = "sky" + +"function" = "blue" +"function.builtin" = "peach" +"function.macro" = "teal" + +"tag" = "mauve" + +"namespace" = { fg = "blue" } + +"special" = "blue" # fuzzy highlight + +"markup.heading.marker" = { fg = "peach", modifiers = ["bold"] } +"markup.heading.1" = "lavender" +"markup.heading.2" = "mauve" +"markup.heading.3" = "green" +"markup.heading.4" = "yellow" +"markup.heading.5" = "pink" +"markup.heading.6" = "teal" +"markup.list" = "mauve" +"markup.bold" = { modifiers = ["bold"] } +"markup.italic" = { modifiers = ["italic"] } +"markup.link.url" = { fg = "peach", modifiers = ["underlined"] } +"markup.link.text" = "blue" +"markup.raw" = "flamingo" + +"diff.plus" = "green" +"diff.minus" = "red" +"diff.delta" = "yellow" + +# User Interface +# -------------- +"ui.background" = { fg = "text", bg = "base" } + +"ui.linenr" = { fg = "surface1" } +"ui.linenr.selected" = { fg = "lavender" } + +"ui.statusline" = { fg = "overlay1", bg = "surface0" } +"ui.statusline.inactive" = { fg = "overlay1", bg = "mantle" } +"ui.statusline.normal" = { fg = "surface0", bg = "lavender", modifiers = ["bold"] } +"ui.statusline.insert" = { fg = "surface0", bg = "green", modifiers = ["bold"] } +"ui.statusline.select" = { fg = "surface0", bg = "flamingo", modifiers = ["bold"] } + +"ui.popup" = { fg = "text", bg = "surface0" } +"ui.window" = { fg = "crust" } +"ui.help" = { fg = "overlay2", bg = "surface0" } + +"ui.text" = "text" +"ui.text.focus" = { fg = "text", bg = "surface0", modifiers = ["bold"] } + +"ui.virtual" = "overlay0" +"ui.virtual.ruler" = { bg = "surface0" } +"ui.virtual.indent-guide" = "surface0" + +"ui.selection" = { bg = "surface1" } + +"ui.cursor" = { fg = "base", bg = "secondary_cursor" } +"ui.cursor.primary" = { fg = "base", bg = "rosewater" } +"ui.cursor.match" = { fg = "peach", modifiers = ["bold"] } + +"ui.cursorline.primary" = { bg = "cursorline" } + +"ui.highlight" = { bg = "surface1" } + +"ui.menu" = { fg = "overlay2", bg = "surface0" } +"ui.menu.selected" = { fg = "text", bg = "surface1", modifiers = ["bold"] } + +diagnostic = { modifiers = ["underlined"] } + +error = "red" +warning = "yellow" +info = "sky" +hint = "teal" + +[palette] +# catppuccin palette colors +rosewater = "#f5e0dc" +flamingo = "#f2cdcd" +pink = "#f5c2e7" +mauve = "#cba6f7" +red = "#f38ba8" +maroon = "#eba0ac" +peach = "#fab387" +yellow = "#f9e2af" +green = "#a6e3a1" +teal = "#94e2d5" +sky = "#89dceb" +sapphire = "#74c7ec" +blue = "#89b4fa" +lavender = "#b4befe" + +text = "#cdd6f4" +subtext1 = "#bac2de" +subtext0 = "#a6adc8" +overlay2 = "#9399b2" +overlay1 = "#7f849c" +overlay0 = "#6c7086" +surface2 = "#585b70" +surface1 = "#45475a" +surface0 = "#313244" + +base = "#1e1e2e" +mantle = "#181825" +crust = "#11111b" + +# derived colors by blending existing palette colors +cursorline = "#2a2b3c" +secondary_cursor = "#b5a6a8" \ No newline at end of file diff --git a/nushell/.config/nushell/config.nu b/nushell/.config/nushell/config.nu index 54dfd5a..5bd403e 100644 --- a/nushell/.config/nushell/config.nu +++ b/nushell/.config/nushell/config.nu @@ -264,7 +264,7 @@ let-env config = { } } history: { - max_size: 1 # Session has to be reloaded for this to take effect + max_size: 1000 # Session has to be reloaded for this to take effect sync_on_enter: true # Enable to share history between multiple sessions, else you have to close the session to write history to file file_format: "plaintext" # "sqlite" or "plaintext" } diff --git a/nvim/.config/nvim b/nvim/.config/nvim deleted file mode 160000 index de43cbb..0000000 --- a/nvim/.config/nvim +++ /dev/null @@ -1 +0,0 @@ -Subproject commit de43cbb0894302a6202a012c03508ce45866397b