Personal dotfiles
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Half configure helix, dunno if I'll use it

+124
+1
helix/.gitignore
··· 1 + themes/syntax.toml
+4
helix/config.toml
··· 1 + theme = "syntax" 2 + 3 + [editor] 4 + auto-format = false
+118
helix/themes/syntax.toml.template
··· 1 + "attribute" = { fg = "attribute" } 2 + "comment" = { fg = "comment", modifiers = ["italic"] } 3 + "constant" = { fg = "constant" } 4 + "constant.numeric" = { fg = "constant" } 5 + "constant.builtin" = { fg = "constant" } 6 + "constant.character.escape" = { fg = "meta" } 7 + "constructor" = { fg = "type" } 8 + "function" = { fg = "function" } 9 + "function.builtin" = { fg = "builtin" } 10 + "function.macro" = { fg = "meta" } 11 + "keyword" = { fg = "keyword" } 12 + "keyword.control" = { fg = "keyword" } 13 + "keyword.control.import" = { fg = "keyword" } 14 + "keyword.directive" = { fg = "keyword" } 15 + "label" = { fg = "module" } 16 + "namespace" = { fg = "module" } 17 + "operator" = { fg = "operator" } 18 + "keyword.operator" = { fg = "operator" } 19 + "special" = { fg = "meta" } 20 + "string" = { fg = "string" } 21 + "type" = { fg = "type" } 22 + "variable" = { fg = "variable" } 23 + "variable.builtin" = { fg = "variable" } 24 + "variable.parameter" = { fg = "variable" } 25 + "variable.other.member" = { fg = "field" } 26 + 27 + "markup.heading" = { fg = "title" } 28 + "markup.raw.inline" = { fg = "meta" } 29 + "markup.bold" = { fg = "strong", modifiers = ["bold"] } 30 + "markup.italic" = { fg = "emphasis", modifiers = ["italic"] } 31 + "markup.list" = { fg = "list" } 32 + "markup.quote" = { fg = "block" } 33 + "markup.link.url" = { fg = "link", modifiers = ["underlined"]} 34 + "markup.link.text" = { fg = "link" } 35 + 36 + "diff.plus" = "addition" 37 + "diff.delta" = "modification" 38 + "diff.minus" = "deletion" 39 + 40 + diagnostic = { modifiers = ["underlined"] } 41 + "info" = { fg = "success" } 42 + "hint" = { fg = "success" } 43 + "warning" = { fg = "warning" } 44 + "error" = { fg = "error" } 45 + 46 + "ui.background" = { bg = "#${theme_color_bgdefault}" } 47 + "ui.virtual" = { fg = "invisible" } 48 + "ui.virtual.indent-guide" = { fg = "invisible" } 49 + "ui.virtual.whitespace" = { fg = "invisible" } 50 + "ui.virtual.ruler" = { bg = "invisible" } 51 + 52 + "ui.cursor" = { bg = "#${theme_color_bghighlight2}" } 53 + "ui.cursor.primary" = { bg = "#${theme_color_bghighlight}" } 54 + "ui.cursor.insert" = { bg = "#${theme_color_bgcursor}" } 55 + "ui.cursor.match" = { bg = "#${theme_color_bghighlight}" } 56 + 57 + "ui.selection" = { bg = "#${theme_color_bghighlight2}", modifies = ["italic"] } 58 + "ui.selection.primary" = { bg = "#${theme_color_bghighlight2}", modifiers = ["bold"] } 59 + "ui.cursorline.primary" = {} 60 + 61 + "ui.linenr" = { fg = "placeholder" } 62 + "ui.linenr.selected" = { fg = "#${theme_color_highlight}" } 63 + 64 + "ui.statusline" = { fg = "white", bg = "light-black" } 65 + "ui.statusline.inactive" = { fg = "light-gray", bg = "light-black" } 66 + "ui.statusline.normal" = { fg = "light-black", bg = "blue" } 67 + "ui.statusline.insert" = { fg = "light-black", bg = "green" } 68 + "ui.statusline.select" = { fg = "light-black", bg = "purple" } 69 + 70 + "ui.text" = { fg = "default" } 71 + "ui.text.focus" = { fg = "default" } 72 + 73 + "ui.help" = { fg = "white", bg = "gray" } 74 + "ui.popup" = { fg = "#${theme_color_highlight}", bg = "#${theme_color_bghighlight}" } 75 + "ui.window" = { fg = "#${theme_color_highlight}", bg = "#${theme_color_bghighlight}" } 76 + "ui.menu" = { fg = "#${theme_color_bgdefault}", bg = "#${theme_color_default}" } 77 + "ui.menu.selected" = { fg = "#${theme_color_highlight}", bg = "#${theme_color_bghighlight}" } 78 + "ui.menu.scroll" = { fg = "#${theme_color_highlight}", bg = "#${theme_color_bghighlight}" } 79 + 80 + [palette] 81 + constant = "#${theme_color_constant}" 82 + type = "#${theme_color_type}" 83 + variable = "#${theme_color_variable}" 84 + identifier = "#${theme_color_variable}" 85 + field = "#${theme_color_variable}" 86 + interpolation = "#${theme_color_interpolation}" 87 + string = "#${theme_color_string}" 88 + keyword = "#${theme_color_keyword}" 89 + operator = "#${theme_color_operator}" 90 + attribute = "#${theme_color_attribute}" 91 + comment = "#${theme_color_comment}" 92 + doc_comment = "#${theme_color_comment}" 93 + meta = "#${theme_color_meta}" 94 + builtin = "#${theme_color_builtin}" 95 + function = "#${theme_color_function}" 96 + module = "#${theme_color_module}" 97 + 98 + success = "#${theme_color_success}" 99 + warning = "#${theme_color_warning}" 100 + error = "#${theme_color_error}" 101 + 102 + title = "#${theme_color_title}" 103 + header = "#${theme_color_header}" 104 + bold = "#${theme_color_strong}" 105 + italic = "#${theme_color_emphasis}" 106 + mono = "#${theme_color_string}" 107 + block = "#${theme_color_builtin}" 108 + link = "#${theme_color_link}" 109 + list = "#${theme_color_keyword}" 110 + 111 + addition = "#${theme_color_addition}" 112 + deletion = "#${theme_color_deletion}" 113 + modification = "#${theme_color_modification}" 114 + 115 + invisible = "#${theme_color_invisible}" 116 + placeholder = "#${theme_color_placeholder}" 117 + 118 + text = "#${theme_color_default}"
+1
setup
··· 53 53 check ranger && dot_config ranger 54 54 check rofi && dot_config rofi 55 55 check sway && dot_config sway 56 + check hx && dot_config helix 56 57 check tig && dot_config tig 57 58 check topgrade && dot_config topgrade 58 59 if [ "$(uname)" == 'Darwin' ]; then