1

Compare commits

...

2 Commits

Author SHA1 Message Date
07409c223d Refresh generated neovim config 2024-08-15 14:28:39 +02:00
001c41a903 Switch which-key preset to helix 2024-08-15 14:28:33 +02:00
5 changed files with 4 additions and 5 deletions

View File

@ -1189,7 +1189,7 @@ require("lazy").setup({
dir = "/home/lab/smchurla/Downloads/flake-nixinator/config/neovim/store/lazy-plugins/which-key.nvim", dir = "/home/lab/smchurla/Downloads/flake-nixinator/config/neovim/store/lazy-plugins/which-key.nvim",
lazy = false, lazy = false,
name = "which-key", name = "which-key",
opts = { preset = "modern" }, opts = { preset = "helix" },
priority = 500, priority = 500,
}, },
{ {

View File

@ -1189,7 +1189,7 @@ require("lazy").setup({
dir = "/nix/store/ypd5dagzrwpz35gnf0a67ak6lz7drfpi-lazy-plugins/which-key.nvim", dir = "/nix/store/ypd5dagzrwpz35gnf0a67ak6lz7drfpi-lazy-plugins/which-key.nvim",
lazy = false, lazy = false,
name = "which-key", name = "which-key",
opts = { preset = "modern" }, opts = { preset = "helix" },
priority = 500, priority = 500,
}, },
{ {

View File

@ -1 +0,0 @@
/nix/store/szac9bif2rhcw4q45vbqy4whbcjx2fwb-hm_nvimqueriesnixinjections.scm

View File

@ -12,7 +12,7 @@ echo "Fixed permission for ./config.lua and ./config_nix.lua"
echo "" echo ""
# Copy all plugins # Copy all plugins
rm -rf ./store/* rm -rf ./store/* # TODO: Check if ./store even exists
echo "Cleared ./store/" echo "Cleared ./store/"
STORE_PATHS=$(rg -oN "\"/nix/store/.*?(lazy-plugins|vimplugin-nvim-treesitter-.*?|treesitter-parsers)\"" config.lua | uniq | sd "\"" "") STORE_PATHS=$(rg -oN "\"/nix/store/.*?(lazy-plugins|vimplugin-nvim-treesitter-.*?|treesitter-parsers)\"" config.lua | uniq | sd "\"" "")

View File

@ -1663,7 +1663,7 @@ in {
priority = 500; priority = 500;
config = mkDefaultConfig name; config = mkDefaultConfig name;
opts = { opts = {
preset = "modern"; preset = "helix"; # or "modern"
}; };
}; };