Compare commits

...

4 commits

Author SHA1 Message Date
raf
8ae0aebb8b
Merge branch 'main' into main 2025-07-20 23:08:16 +03:00
Abhi
cec4a94197
utility/undotree: moved undotree to utility object 2025-07-20 15:52:38 -04:00
raf
da1fed218b
Merge pull request #1029 from imnotpoz/kaktus-fix
Some checks failed
Set up binary cache / cachix (default) (push) Has been cancelled
Set up binary cache / cachix (maximal) (push) Has been cancelled
Set up binary cache / cachix (nix) (push) Has been cancelled
Treewide Checks / Validate flake (push) Has been cancelled
Treewide Checks / Check formatting (push) Has been cancelled
Treewide Checks / Check source tree for typos (push) Has been cancelled
Treewide Checks / Validate documentation builds (push) Has been cancelled
Treewide Checks / Validate hyperlinks in documentation sources (push) Has been cancelled
Treewide Checks / Validate Editorconfig conformance (push) Has been cancelled
Build and deploy documentation / Check latest commit (push) Has been cancelled
Build and deploy documentation / publish (push) Has been cancelled
languages/wgsl: fix binary path
2025-07-20 15:06:09 +03:00
poz
7f6fe46833
languages/wgsl: fix binary path 2025-07-20 13:59:22 +02:00
4 changed files with 10 additions and 7 deletions

View file

@ -43,7 +43,7 @@ isMaximal: {
# This section does not include a comprehensive list of available language modules.
# To list all available language module options, please visit the nvf manual.
languages = {
enableFormat = true; #
enableFormat = true;
enableTreesitter = true;
enableExtraDiagnostics = true;
@ -183,7 +183,7 @@ isMaximal: {
projects = {
project-nvim.enable = isMaximal;
};
undotree.enable = isMaximal;
utility = {
ccc.enable = false;
vim-wakatime.enable = false;
@ -194,7 +194,7 @@ isMaximal: {
leetcode-nvim.enable = isMaximal;
multicursors.enable = isMaximal;
smart-splits.enable = isMaximal;
undotree.enable = isMaximal;
motion = {
hop.enable = true;
leap.enable = true;
@ -238,7 +238,10 @@ isMaximal: {
nix = "110";
ruby = "120";
java = "130";
go = ["90" "130"];
go = [
"90"
"130"
];
};
};
fastaction.enable = true;

View file

@ -26,7 +26,7 @@
cmd = ${
if isList cfg.lsp.package
then expToLua cfg.lsp.package
else "{'${cfg.lsp.package}/bin/wgsl_analyzer'}"
else "{'${cfg.lsp.package}/bin/wgsl-analyzer'}"
}
}
'';

View file

@ -1,5 +1,5 @@
{
vim.lazy.plugins.undotree = {
vim.lazy.plugins.utility.undotree = {
package = "undotree";
cmd = [
"UndotreeToggle"

View file

@ -1,7 +1,7 @@
{lib, ...}: let
inherit (lib.options) mkEnableOption;
in {
options.vim.undotree = {
options.vim.utility.undotree = {
enable = mkEnableOption "undo history visualizer for Vim [undotree]";
};
}