treewide: apply updated treefmt
This commit is contained in:
parent
a4522deb63
commit
4c09a1ac2d
16 changed files with 56 additions and 56 deletions
|
|
@ -121,9 +121,9 @@ lib.nixvim.plugins.mkNeovimPlugin {
|
|||
If true will display arrow index in scrollbar at every update.
|
||||
'';
|
||||
|
||||
overlap = lib.nixvim.defaultNullOpts.mkBool false '''';
|
||||
overlap = lib.nixvim.defaultNullOpts.mkBool false "";
|
||||
|
||||
priority = lib.nixvim.defaultNullOpts.mkInt 1000 '''';
|
||||
priority = lib.nixvim.defaultNullOpts.mkInt 1000 "";
|
||||
};
|
||||
|
||||
zindex = lib.nixvim.defaultNullOpts.mkInt 50 ''
|
||||
|
|
|
|||
|
|
@ -48,7 +48,7 @@ types.submodule {
|
|||
'';
|
||||
|
||||
transform_items = defaultNullOpts.mkRaw' {
|
||||
pluginDefault = ''function(_, items) return items end'';
|
||||
pluginDefault = "function(_, items) return items end";
|
||||
description = ''
|
||||
Function to transform the items before they're returned.
|
||||
'';
|
||||
|
|
|
|||
|
|
@ -59,7 +59,7 @@ lib.nixvim.plugins.mkNeovimPlugin {
|
|||
preConfig = ''
|
||||
local coq = require 'coq'
|
||||
'';
|
||||
setupWrappers = [ (s: ''coq.lsp_ensure_capabilities(${s})'') ];
|
||||
setupWrappers = [ (s: "coq.lsp_ensure_capabilities(${s})") ];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -61,7 +61,7 @@ lib.nixvim.plugins.mkNeovimPlugin {
|
|||
component =
|
||||
defaultNullOpts.mkAttrsOf types.str
|
||||
{
|
||||
mode = ''%{lightline#mode()}'';
|
||||
mode = "%{lightline#mode()}";
|
||||
absolutepath = "%F";
|
||||
relativepath = "%f";
|
||||
filename = "%t";
|
||||
|
|
@ -81,7 +81,7 @@ lib.nixvim.plugins.mkNeovimPlugin {
|
|||
line = "%l";
|
||||
column = "%c";
|
||||
close = "%999X X ";
|
||||
winnr = ''%{winnr()}'';
|
||||
winnr = "%{winnr()}";
|
||||
}
|
||||
''
|
||||
Lightline component definitions. Uses 'statusline' syntax.
|
||||
|
|
@ -151,7 +151,7 @@ lib.nixvim.plugins.mkNeovimPlugin {
|
|||
"filename"
|
||||
"modified"
|
||||
];
|
||||
} ''A dictionary to store the tab components in each tabs.'';
|
||||
} "A dictionary to store the tab components in each tabs.";
|
||||
|
||||
mode_map =
|
||||
defaultNullOpts.mkAttrsOf types.str
|
||||
|
|
|
|||
|
|
@ -128,7 +128,7 @@ lib.nixvim.plugins.mkNeovimPlugin {
|
|||
Whether the cursor should be placed before or after the substitution.
|
||||
'';
|
||||
|
||||
keys = lib.nixvim.defaultNullOpts.mkStr "qwertyuiopzxcvbnmasdfghjkl" '''';
|
||||
keys = lib.nixvim.defaultNullOpts.mkStr "qwertyuiopzxcvbnmasdfghjkl" "";
|
||||
|
||||
highlight = lib.nixvim.defaultNullOpts.mkStr "Search" ''
|
||||
Which highlight group to use for the match.
|
||||
|
|
|
|||
|
|
@ -77,7 +77,7 @@ lib.nixvim.plugins.mkNeovimPlugin {
|
|||
"q" = "Close";
|
||||
};
|
||||
}
|
||||
''The task list displays all tasks that have been created. It shows the task status, name, and a summary of the task output.'';
|
||||
"The task list displays all tasks that have been created. It shows the task status, name, and a summary of the task output.";
|
||||
|
||||
task_editor = {
|
||||
bindings =
|
||||
|
|
|
|||
|
|
@ -83,7 +83,7 @@ lib.nixvim.plugins.mkNeovimPlugin {
|
|||
set_compressed = false;
|
||||
};
|
||||
};
|
||||
} ''Table of client configurations.'';
|
||||
} "Table of client configurations.";
|
||||
|
||||
cookies = {
|
||||
enable = defaultNullOpts.mkBool true ''
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ lib.nixvim.plugins.mkNeovimPlugin {
|
|||
cterm_color = defaultNullOpts.mkStr null "Cterm color of the icon.";
|
||||
name = defaultNullOpts.mkStr null "Name to replace with icon.";
|
||||
};
|
||||
}) { } ''Custom overrides for icons.'';
|
||||
}) { } "Custom overrides for icons.";
|
||||
|
||||
defaultIcon = mkNullOrOption (lib.types.submodule {
|
||||
options = {
|
||||
|
|
@ -35,7 +35,7 @@ lib.nixvim.plugins.mkNeovimPlugin {
|
|||
color = defaultNullOpts.mkStr null "Color of the icon.";
|
||||
cterm_color = defaultNullOpts.mkStr null "Cterm color of the icon.";
|
||||
};
|
||||
}) ''Set the default icon when none is found.'';
|
||||
}) "Set the default icon when none is found.";
|
||||
};
|
||||
|
||||
extraConfig = cfg: {
|
||||
|
|
|
|||
|
|
@ -548,35 +548,35 @@ in
|
|||
with cfg.pythonPackage.pkgs;
|
||||
{
|
||||
pylsp_mypy = pylsp-mypy.overridePythonAttrs (old: {
|
||||
postPatch = old.postPatch or '''' + ''
|
||||
postPatch = old.postPatch or "" + ''
|
||||
substituteInPlace setup.cfg \
|
||||
--replace-fail "python-lsp-server >=1.7.0" ""
|
||||
'';
|
||||
});
|
||||
isort = pyls-isort.overridePythonAttrs (old: {
|
||||
postPatch = old.postPatch or '''' + ''
|
||||
postPatch = old.postPatch or "" + ''
|
||||
substituteInPlace setup.py \
|
||||
--replace-fail 'install_requires=["python-lsp-server", "isort"],' 'install_requires=["isort"],'
|
||||
'';
|
||||
});
|
||||
black = python-lsp-black.overridePythonAttrs (old: {
|
||||
postPatch = old.postPatch or '''' + ''
|
||||
postPatch = old.postPatch or "" + ''
|
||||
substituteInPlace setup.cfg \
|
||||
--replace-fail "python-lsp-server>=1.4.0" ""
|
||||
'';
|
||||
});
|
||||
memestra = pyls-memestra.overridePythonAttrs (old: {
|
||||
postPatch = old.postPatch or '''' + ''
|
||||
postPatch = old.postPatch or "" + ''
|
||||
sed -i '/python-lsp-server/d' requirements.txt
|
||||
'';
|
||||
});
|
||||
rope = pylsp-rope.overridePythonAttrs (old: {
|
||||
postPatch = old.postPatch or '''' + ''
|
||||
postPatch = old.postPatch or "" + ''
|
||||
sed -i '/python-lsp-server/d' setup.cfg
|
||||
'';
|
||||
});
|
||||
ruff = python-lsp-ruff.overridePythonAttrs (old: {
|
||||
postPatch = old.postPatch or '''' + ''
|
||||
postPatch = old.postPatch or "" + ''
|
||||
sed -i '/python-lsp-server/d' pyproject.toml
|
||||
'';
|
||||
|
||||
|
|
|
|||
|
|
@ -105,7 +105,7 @@ let
|
|||
};
|
||||
};
|
||||
};
|
||||
expected = ''{ a = { b = 1, c = 2, d = { e = 3 } } }'';
|
||||
expected = "{ a = { b = 1, c = 2, d = { e = 3 } } }";
|
||||
};
|
||||
|
||||
testToLuaObjectNestedList = {
|
||||
|
|
@ -133,7 +133,7 @@ let
|
|||
d = false;
|
||||
e = null;
|
||||
};
|
||||
expected = ''{ a = 1.0, b = 2, c = true, d = false }'';
|
||||
expected = "{ a = 1.0, b = 2, c = true, d = false }";
|
||||
};
|
||||
|
||||
testToLuaObjectNilPrim = {
|
||||
|
|
@ -175,7 +175,7 @@ let
|
|||
f = { };
|
||||
};
|
||||
};
|
||||
expected = ''{ }'';
|
||||
expected = "{ }";
|
||||
};
|
||||
|
||||
testToLuaObjectAttrListFilters = {
|
||||
|
|
@ -224,7 +224,7 @@ let
|
|||
]
|
||||
];
|
||||
};
|
||||
expected = ''{ { { }, { }, { { }, { } } }, g = { { }, { } } }'';
|
||||
expected = "{ { { }, { }, { { }, { } } }, g = { { }, { } } }";
|
||||
};
|
||||
|
||||
testToLuaObjectEmptyTable = {
|
||||
|
|
@ -240,7 +240,7 @@ let
|
|||
g = helpers.emptyTable;
|
||||
};
|
||||
};
|
||||
expected = ''{ c = { }, d = { g = { } } }'';
|
||||
expected = "{ c = { }, d = { g = { } } }";
|
||||
};
|
||||
|
||||
testToLuaObjectEmptyListEntries = {
|
||||
|
|
|
|||
|
|
@ -30,9 +30,9 @@
|
|||
prev_item = "[";
|
||||
};
|
||||
custom_actions = {
|
||||
open = ''function(target_file_name, current_file_name) end'';
|
||||
split_vertical = ''function(target_file_name, current_file_name) end'';
|
||||
split_horizontal = ''function(target_file_name, current_file_name) end'';
|
||||
open = "function(target_file_name, current_file_name) end";
|
||||
split_vertical = "function(target_file_name, current_file_name) end";
|
||||
split_horizontal = "function(target_file_name, current_file_name) end";
|
||||
};
|
||||
window = {
|
||||
width = "auto";
|
||||
|
|
|
|||
|
|
@ -37,31 +37,31 @@
|
|||
};
|
||||
mappings = {
|
||||
list = {
|
||||
"j".__raw = ''require('glance').actions.next'';
|
||||
"k".__raw = ''require('glance').actions.previous'';
|
||||
"<Down>".__raw = ''require('glance').actions.next'';
|
||||
"<Up>".__raw = ''require('glance').actions.previous'';
|
||||
"<Tab>".__raw = ''require('glance').actions.next_location'';
|
||||
"<S-Tab>".__raw = ''require('glance').actions.previous_location'';
|
||||
"<C-u>".__raw = ''require('glance').actions.preview_scroll_win(5)'';
|
||||
"<C-d>".__raw = ''require('glance').actions.preview_scroll_win(-5)'';
|
||||
"v".__raw = ''require('glance').actions.jump_vsplit'';
|
||||
"s".__raw = ''require('glance').actions.jump_split'';
|
||||
"t".__raw = ''require('glance').actions.jump_tab'';
|
||||
"<CR>".__raw = ''require('glance').actions.jump'';
|
||||
"o".__raw = ''require('glance').actions.jump'';
|
||||
"l".__raw = ''require('glance').actions.open_fold'';
|
||||
"h".__raw = ''require('glance').actions.close_fold'';
|
||||
"j".__raw = "require('glance').actions.next";
|
||||
"k".__raw = "require('glance').actions.previous";
|
||||
"<Down>".__raw = "require('glance').actions.next";
|
||||
"<Up>".__raw = "require('glance').actions.previous";
|
||||
"<Tab>".__raw = "require('glance').actions.next_location";
|
||||
"<S-Tab>".__raw = "require('glance').actions.previous_location";
|
||||
"<C-u>".__raw = "require('glance').actions.preview_scroll_win(5)";
|
||||
"<C-d>".__raw = "require('glance').actions.preview_scroll_win(-5)";
|
||||
"v".__raw = "require('glance').actions.jump_vsplit";
|
||||
"s".__raw = "require('glance').actions.jump_split";
|
||||
"t".__raw = "require('glance').actions.jump_tab";
|
||||
"<CR>".__raw = "require('glance').actions.jump";
|
||||
"o".__raw = "require('glance').actions.jump";
|
||||
"l".__raw = "require('glance').actions.open_fold";
|
||||
"h".__raw = "require('glance').actions.close_fold";
|
||||
"<leader>l".__raw = ''require('glance').actions.enter_win("preview")'';
|
||||
"q".__raw = ''require('glance').actions.close'';
|
||||
"Q".__raw = ''require('glance').actions.close'';
|
||||
"<Esc>".__raw = ''require('glance').actions.close'';
|
||||
"<C-q>".__raw = ''require('glance').actions.quickfix'';
|
||||
"q".__raw = "require('glance').actions.close";
|
||||
"Q".__raw = "require('glance').actions.close";
|
||||
"<Esc>".__raw = "require('glance').actions.close";
|
||||
"<C-q>".__raw = "require('glance').actions.quickfix";
|
||||
};
|
||||
preview = {
|
||||
"Q".__raw = ''require('glance').actions.close'';
|
||||
"<Tab>".__raw = ''require('glance').actions.next_location'';
|
||||
"<S-Tab>".__raw = ''require('glance').actions.previous_location'';
|
||||
"Q".__raw = "require('glance').actions.close";
|
||||
"<Tab>".__raw = "require('glance').actions.next_location";
|
||||
"<S-Tab>".__raw = "require('glance').actions.previous_location";
|
||||
"<leader>l".__raw = ''require('glance').actions.enter_win("list")'';
|
||||
};
|
||||
};
|
||||
|
|
|
|||
|
|
@ -23,9 +23,9 @@
|
|||
placeholders = {
|
||||
enabled = true;
|
||||
search = "ex: foo foo([a-z0-9]*) fun\\(";
|
||||
replacement = ''ex: bar $${1}_foo $$MY_ENV_VAR'';
|
||||
replacement = "ex: bar $${1}_foo $$MY_ENV_VAR";
|
||||
replacement_lua = ''ex: if vim.startsWith(match; "use") \\n then return "employ" .. match \\n else return match end'';
|
||||
filesFilter = ''ex: *.lua *.{css;js} **/docs/*.md (specify one per line)'';
|
||||
filesFilter = "ex: *.lua *.{css;js} **/docs/*.md (specify one per line)";
|
||||
flags = "ex: --help --ignore-case (-i) --replace= (empty replace) --multiline (-U)";
|
||||
paths = "ex: /foo/bar ../ ./hello\\ world/ ./src/foo.lua ~/.config";
|
||||
};
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@
|
|||
colorscheme = "default";
|
||||
component_function.__raw = "nil";
|
||||
component = {
|
||||
mode = ''%{lightline#mode()}'';
|
||||
mode = "%{lightline#mode()}";
|
||||
absolutepath = "%F";
|
||||
relativepath = "%f";
|
||||
filename = "%t";
|
||||
|
|
@ -22,16 +22,16 @@
|
|||
charvalue = "%b";
|
||||
charvaluehex = "%B";
|
||||
fileencoding = ''%{&fenc!=#""?&fenc:&enc}'';
|
||||
fileformat = ''%{&ff}'';
|
||||
fileformat = "%{&ff}";
|
||||
filetype = ''%{&ft!=#""?&ft:"no ft"}'';
|
||||
percent = "%3p%%";
|
||||
percentwin = "%P";
|
||||
spell = ''%{&spell?&spelllang:""}'';
|
||||
lineinfo = ''%3l=%-2c'';
|
||||
lineinfo = "%3l=%-2c";
|
||||
line = "%l";
|
||||
column = "%c";
|
||||
close = "%999X X ";
|
||||
winnr = ''%{winnr()}'';
|
||||
winnr = "%{winnr()}";
|
||||
};
|
||||
active = {
|
||||
left = [
|
||||
|
|
|
|||
|
|
@ -66,7 +66,7 @@
|
|||
enable = true;
|
||||
timeout = 750;
|
||||
};
|
||||
_log_level.__raw = ''vim.log.levels.WARN'';
|
||||
_log_level.__raw = "vim.log.levels.WARN";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@
|
|||
return nil
|
||||
end
|
||||
'';
|
||||
capabilities.__raw = ''vim.lsp.protocol.make_client_capabilities()'';
|
||||
capabilities.__raw = "vim.lsp.protocol.make_client_capabilities()";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue