🪴 my neovim config:)
1
fork

Configure Feed

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

refactor: move grammars list to separate module

robin aaa56769 08ae87fe

+76 -75
+75
pkgs/ivy/grammars.nix
··· 1 + [ 2 + # keep-sorted start 3 + "astro" 4 + "bash" 5 + "c" 6 + "cmake" 7 + "comment" 8 + "commonlisp" 9 + "cpp" 10 + "css" 11 + "csv" 12 + "diff" 13 + "dockerfile" 14 + "editorconfig" 15 + "fennel" 16 + "fish" 17 + "gdscript" 18 + "git_config" 19 + "git_rebase" 20 + "gitattributes" 21 + "gitcommit" 22 + "gitignore" 23 + "glsl" 24 + "go" 25 + "gomod" 26 + "gosum" 27 + "gotmpl" 28 + "graphql" 29 + "haskell" 30 + "hlsl" 31 + "html" 32 + "hyprlang" 33 + "ini" 34 + "java" 35 + "javascript" 36 + "jsdoc" 37 + "json" 38 + "just" 39 + "latex" 40 + "lua" 41 + "luadoc" 42 + "luau" 43 + "make" 44 + "markdown" 45 + "markdown_inline" 46 + "nix" 47 + "nu" 48 + "properties" 49 + "python" 50 + "qmljs" 51 + "rasi" 52 + "regex" 53 + "robots_txt" 54 + "rust" 55 + "scss" 56 + "ssh_config" 57 + "svelte" 58 + "tera" 59 + "tmux" 60 + "toml" 61 + "tsv" 62 + "tsx" 63 + "typescript" 64 + "typst" 65 + "udev" 66 + "uxntal" 67 + "vhs" 68 + "vue" 69 + "wgsl" 70 + "wgsl_bevy" 71 + "yaml" 72 + "yuck" 73 + "zig" 74 + # keep-sorted end 75 + ]
+1 -75
pkgs/ivy/package.nix
··· 90 90 partionPlugins 91 91 ]; 92 92 93 - grammarsNames = [ 94 - # keep-sorted start 95 - "astro" 96 - "bash" 97 - "c" 98 - "cmake" 99 - "comment" 100 - "commonlisp" 101 - "cpp" 102 - "css" 103 - "csv" 104 - "diff" 105 - "dockerfile" 106 - "editorconfig" 107 - "fennel" 108 - "fish" 109 - "gdscript" 110 - "git_config" 111 - "git_rebase" 112 - "gitattributes" 113 - "gitcommit" 114 - "gitignore" 115 - "glsl" 116 - "go" 117 - "gomod" 118 - "gosum" 119 - "gotmpl" 120 - "graphql" 121 - "haskell" 122 - "hlsl" 123 - "html" 124 - "hyprlang" 125 - "ini" 126 - "java" 127 - "javascript" 128 - "jsdoc" 129 - "json" 130 - "just" 131 - "latex" 132 - "lua" 133 - "luadoc" 134 - "luau" 135 - "make" 136 - "markdown" 137 - "markdown_inline" 138 - "nix" 139 - "nu" 140 - "properties" 141 - "python" 142 - "qmljs" 143 - "rasi" 144 - "regex" 145 - "robots_txt" 146 - "rust" 147 - "scss" 148 - "ssh_config" 149 - "svelte" 150 - "tera" 151 - "tmux" 152 - "toml" 153 - "tsv" 154 - "tsx" 155 - "typescript" 156 - "typst" 157 - "udev" 158 - "uxntal" 159 - "vhs" 160 - "vue" 161 - "wgsl" 162 - "wgsl_bevy" 163 - "yaml" 164 - "yuck" 165 - "zig" 166 - # keep-sorted end 167 - ]; 93 + grammarsNames = import ./grammars.nix; 168 94 169 95 treesitterPlugins = 170 96 f: