Compare commits

..

No commits in common. "8ae0aebb8bfedba526e78860a04caaa01d44b434" and "0a1dda51d0b548d960c0d6d344efeffede8af233" have entirely different histories.

4 changed files with 7 additions and 10 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,10 +238,7 @@ 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.utility.undotree = {
vim.lazy.plugins.undotree = {
package = "undotree";
cmd = [
"UndotreeToggle"

View file

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