From 440f739cab62fc774f287f27519430b6aec3a47c Mon Sep 17 00:00:00 2001 From: Daniel Patterson Date: Tue, 16 Jan 2024 22:12:11 +0000 Subject: [PATCH] Readd helix --- users/configs/system/default.nix | 1 + users/configs/system/helix/config/config.toml | 7 ++- .../system/helix/config/themes/dracula.toml | 54 ------------------- 3 files changed, 6 insertions(+), 56 deletions(-) delete mode 100644 users/configs/system/helix/config/themes/dracula.toml diff --git a/users/configs/system/default.nix b/users/configs/system/default.nix index 5eda3da..774d60c 100644 --- a/users/configs/system/default.nix +++ b/users/configs/system/default.nix @@ -1,5 +1,6 @@ { imports = [ + ./helix ./kitty ./nb ./nvim diff --git a/users/configs/system/helix/config/config.toml b/users/configs/system/helix/config/config.toml index d31e8e6..5b9ecb7 100644 --- a/users/configs/system/helix/config/config.toml +++ b/users/configs/system/helix/config/config.toml @@ -1,4 +1,7 @@ -theme = "dracula" +theme = "catppuccin_macchiato" [editor] -mouse = false +line-number = "relative" + +[editor.cursor-shape] +insert = "bar" diff --git a/users/configs/system/helix/config/themes/dracula.toml b/users/configs/system/helix/config/themes/dracula.toml deleted file mode 100644 index 4021e6f..0000000 --- a/users/configs/system/helix/config/themes/dracula.toml +++ /dev/null @@ -1,54 +0,0 @@ -# Author : Sebastian Zivota -"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", modifiers = ["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" = { fg = "background", bg = "purple", modifiers = ["dim"] } -"ui.selection.primary" = { fg = "background", bg = "pink" } -"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" } - -"error" = { fg = "red" } -"warning" = { fg = "cyan" } - -[palette] -background = "#282a36" -background_dark = "#21222c" -foreground = "#f8f8f2" -comment = "#6272a4" -red = "#ff5555" -orange = "#ffb86c" -yellow = "#f1fa8c" -green = "#50fa7b" -purple = "#bd93f9" -cyan = "#8be9fd" -pink = "#ff79c6"