mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-08 19:46:06 +01:00
Compare commits
4 commits
aa3a1dfb02
...
68b07c2c34
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
68b07c2c34 | ||
|
|
dfdc4aebfb | ||
|
|
79d53a50e2 | ||
|
|
9c2c9a1b35 |
203 changed files with 742 additions and 733 deletions
|
|
@ -4,7 +4,7 @@
|
||||||
}:
|
}:
|
||||||
let
|
let
|
||||||
inherit (lib) types;
|
inherit (lib) types;
|
||||||
inherit (lib.nixvim) defaultNullOpts mkNullOrOption;
|
inherit (lib.nixvim) defaultNullOpts mkNullOrOption nestedLiteralLua;
|
||||||
in
|
in
|
||||||
lib.nixvim.plugins.mkVimPlugin {
|
lib.nixvim.plugins.mkVimPlugin {
|
||||||
name = "emmet";
|
name = "emmet";
|
||||||
|
|
@ -49,11 +49,11 @@ lib.nixvim.plugins.mkVimPlugin {
|
||||||
html = {
|
html = {
|
||||||
default_attributes = {
|
default_attributes = {
|
||||||
option = {
|
option = {
|
||||||
value = null;
|
value = nestedLiteralLua "nil";
|
||||||
};
|
};
|
||||||
textarea = {
|
textarea = {
|
||||||
id = null;
|
id = nestedLiteralLua "nil";
|
||||||
name = null;
|
name = nestedLiteralLua "nil";
|
||||||
cols = 10;
|
cols = 10;
|
||||||
rows = 10;
|
rows = 10;
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
}:
|
}:
|
||||||
let
|
let
|
||||||
inherit (lib) types;
|
inherit (lib) types;
|
||||||
inherit (lib.nixvim) defaultNullOpts;
|
inherit (lib.nixvim) defaultNullOpts nestedLiteral;
|
||||||
in
|
in
|
||||||
lib.nixvim.plugins.mkVimPlugin {
|
lib.nixvim.plugins.mkVimPlugin {
|
||||||
name = "lazygit";
|
name = "lazygit";
|
||||||
|
|
@ -89,6 +89,6 @@ lib.nixvim.plugins.mkVimPlugin {
|
||||||
floating_window_use_plenary = 0;
|
floating_window_use_plenary = 0;
|
||||||
use_neovim_remote = 1;
|
use_neovim_remote = 1;
|
||||||
use_custom_config_file_path = 0;
|
use_custom_config_file_path = 0;
|
||||||
config_file_path = [ ];
|
config_file_path = nestedLiteral "lib.nixvim.emptyTable";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -23,7 +23,8 @@ lib.nixvim.plugins.mkNeovimPlugin {
|
||||||
cmp = {
|
cmp = {
|
||||||
enable = lib.mkOption {
|
enable = lib.mkOption {
|
||||||
type = types.bool;
|
type = types.bool;
|
||||||
default = true;
|
default = config.plugins.cmp.enable;
|
||||||
|
defaultText = lib.literalExpression "config.plugins.cmp.enable";
|
||||||
description = "Integrate with nvim-cmp";
|
description = "Integrate with nvim-cmp";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@
|
||||||
diff = {
|
diff = {
|
||||||
ctxlen = 3;
|
ctxlen = 3;
|
||||||
};
|
};
|
||||||
highlight_command = [ ];
|
highlight_command.__empty = { };
|
||||||
backend = [
|
backend = [
|
||||||
"telescope"
|
"telescope"
|
||||||
"minipick"
|
"minipick"
|
||||||
|
|
@ -35,7 +35,7 @@
|
||||||
'';
|
'';
|
||||||
nui = {
|
nui = {
|
||||||
dir = "col";
|
dir = "col";
|
||||||
keymap = null;
|
keymap.__raw = "nil";
|
||||||
layout = {
|
layout = {
|
||||||
position = "50%";
|
position = "50%";
|
||||||
size = {
|
size = {
|
||||||
|
|
|
||||||
|
|
@ -20,16 +20,16 @@
|
||||||
40
|
40
|
||||||
0.2
|
0.2
|
||||||
];
|
];
|
||||||
width = null;
|
width.__raw = "nil";
|
||||||
min_width = 10;
|
min_width = 10;
|
||||||
win_opts = { };
|
win_opts.__empty = { };
|
||||||
default_direction = "prefer_right";
|
default_direction = "prefer_right";
|
||||||
placement = "window";
|
placement = "window";
|
||||||
resize_to_content = true;
|
resize_to_content = true;
|
||||||
preserve_equality = false;
|
preserve_equality = false;
|
||||||
};
|
};
|
||||||
attach_mode = "window";
|
attach_mode = "window";
|
||||||
close_automatic_events = [ ];
|
close_automatic_events.__empty = { };
|
||||||
keymaps = {
|
keymaps = {
|
||||||
"?" = "actions.show_help";
|
"?" = "actions.show_help";
|
||||||
"g?" = "actions.show_help";
|
"g?" = "actions.show_help";
|
||||||
|
|
@ -82,11 +82,11 @@
|
||||||
highlight_on_hover = false;
|
highlight_on_hover = false;
|
||||||
highlight_on_jump = 300;
|
highlight_on_jump = 300;
|
||||||
autojump = false;
|
autojump = false;
|
||||||
icons = [ ];
|
icons.__empty = { };
|
||||||
ignore = {
|
ignore = {
|
||||||
unlisted_buffers = false;
|
unlisted_buffers = false;
|
||||||
diff_windows = true;
|
diff_windows = true;
|
||||||
filetypes = [ ];
|
filetypes.__empty = { };
|
||||||
buftypes = "special";
|
buftypes = "special";
|
||||||
wintypes = "special";
|
wintypes = "special";
|
||||||
};
|
};
|
||||||
|
|
@ -126,7 +126,7 @@
|
||||||
border = "rounded";
|
border = "rounded";
|
||||||
relative = "cursor";
|
relative = "cursor";
|
||||||
max_height = 0.9;
|
max_height = 0.9;
|
||||||
height = null;
|
height.__raw = "nil";
|
||||||
min_height = [
|
min_height = [
|
||||||
8
|
8
|
||||||
0.1
|
0.1
|
||||||
|
|
@ -171,7 +171,7 @@
|
||||||
diagnostics_trigger_update = false;
|
diagnostics_trigger_update = false;
|
||||||
update_when_errors = true;
|
update_when_errors = true;
|
||||||
update_delay = 300;
|
update_delay = 300;
|
||||||
priority = { };
|
priority.__empty = { };
|
||||||
};
|
};
|
||||||
treesitter = {
|
treesitter = {
|
||||||
update_delay = 300;
|
update_delay = 300;
|
||||||
|
|
|
||||||
|
|
@ -29,7 +29,7 @@
|
||||||
default_bindings = false;
|
default_bindings = false;
|
||||||
debug = true;
|
debug = true;
|
||||||
vim = true;
|
vim = true;
|
||||||
ignore_buffers = [ ];
|
ignore_buffers.__empty = { };
|
||||||
border = {
|
border = {
|
||||||
style = [
|
style = [
|
||||||
"╭"
|
"╭"
|
||||||
|
|
|
||||||
|
|
@ -26,7 +26,7 @@
|
||||||
inactive_collapse = 1;
|
inactive_collapse = 1;
|
||||||
inactive_alt_sep = 1;
|
inactive_alt_sep = 1;
|
||||||
theme = "dark";
|
theme = "dark";
|
||||||
theme_patch_func = null;
|
theme_patch_func.__raw = "nil";
|
||||||
powerline_fonts = 0;
|
powerline_fonts = 0;
|
||||||
symbols_ascii = 0;
|
symbols_ascii = 0;
|
||||||
mode_map = {
|
mode_map = {
|
||||||
|
|
@ -47,8 +47,8 @@
|
||||||
v = "V";
|
v = "V";
|
||||||
V = "V";
|
V = "V";
|
||||||
};
|
};
|
||||||
exclude_filenames = [ ];
|
exclude_filenames.__empty = { };
|
||||||
exclude_filetypes = [ ];
|
exclude_filetypes.__empty = { };
|
||||||
filetype_overrides = {
|
filetype_overrides = {
|
||||||
coc-explorer = [
|
coc-explorer = [
|
||||||
"CoC Explorer"
|
"CoC Explorer"
|
||||||
|
|
|
||||||
|
|
@ -42,7 +42,7 @@
|
||||||
];
|
];
|
||||||
cancel_deferred_save = [ "InsertEnter" ];
|
cancel_deferred_save = [ "InsertEnter" ];
|
||||||
};
|
};
|
||||||
condition = null;
|
condition.__raw = "nil";
|
||||||
write_all_buffers = false;
|
write_all_buffers = false;
|
||||||
noautocmd = false;
|
noautocmd = false;
|
||||||
lockmarks = false;
|
lockmarks = false;
|
||||||
|
|
|
||||||
|
|
@ -13,12 +13,12 @@
|
||||||
auto_save = true;
|
auto_save = true;
|
||||||
auto_restore = true;
|
auto_restore = true;
|
||||||
auto_create = true;
|
auto_create = true;
|
||||||
suppressed_dirs = null;
|
suppressed_dirs.__raw = "nil";
|
||||||
allowed_dirs = null;
|
allowed_dirs.__raw = "nil";
|
||||||
auto_restore_last_session = false;
|
auto_restore_last_session = false;
|
||||||
use_git_branch = false;
|
use_git_branch = false;
|
||||||
lazy_support = true;
|
lazy_support = true;
|
||||||
bypass_save_filetypes = null;
|
bypass_save_filetypes.__raw = "nil";
|
||||||
close_unsupported_windows = true;
|
close_unsupported_windows = true;
|
||||||
args_allow_single_directory = true;
|
args_allow_single_directory = true;
|
||||||
args_allow_files_auto_save = false;
|
args_allow_files_auto_save = false;
|
||||||
|
|
@ -27,7 +27,7 @@
|
||||||
log_level = "error";
|
log_level = "error";
|
||||||
session_lens = {
|
session_lens = {
|
||||||
load_on_setup = true;
|
load_on_setup = true;
|
||||||
theme_conf = { };
|
theme_conf.__empty = { };
|
||||||
previewer = false;
|
previewer = false;
|
||||||
mappings = {
|
mappings = {
|
||||||
delete_session = {
|
delete_session = {
|
||||||
|
|
|
||||||
|
|
@ -28,7 +28,7 @@
|
||||||
copilot = {
|
copilot = {
|
||||||
endpoint = "https://api.githubcopilot.com";
|
endpoint = "https://api.githubcopilot.com";
|
||||||
model = "gpt-4o-2024-05-13";
|
model = "gpt-4o-2024-05-13";
|
||||||
proxy = null;
|
proxy.__raw = "nil";
|
||||||
allow_insecure = false;
|
allow_insecure = false;
|
||||||
timeout = 30000;
|
timeout = 30000;
|
||||||
extra_request_body = {
|
extra_request_body = {
|
||||||
|
|
|
||||||
|
|
@ -30,8 +30,8 @@
|
||||||
animation = true;
|
animation = true;
|
||||||
auto_hide = -1;
|
auto_hide = -1;
|
||||||
clickable = true;
|
clickable = true;
|
||||||
exclude_ft = [ ];
|
exclude_ft.__empty = { };
|
||||||
exclude_name = [ ];
|
exclude_name.__empty = { };
|
||||||
focus_on_close = "left";
|
focus_on_close = "left";
|
||||||
hide = {
|
hide = {
|
||||||
alternate = false;
|
alternate = false;
|
||||||
|
|
@ -94,10 +94,10 @@
|
||||||
filename = false;
|
filename = false;
|
||||||
separator.right = " ";
|
separator.right = " ";
|
||||||
};
|
};
|
||||||
alternate = { };
|
alternate.__empty = { };
|
||||||
current = { };
|
current.__empty = { };
|
||||||
inactive = { };
|
inactive.__empty = { };
|
||||||
visible = { };
|
visible.__empty = { };
|
||||||
preset = "default";
|
preset = "default";
|
||||||
};
|
};
|
||||||
insert_at_start = false;
|
insert_at_start = false;
|
||||||
|
|
@ -107,9 +107,9 @@
|
||||||
maximum_length = 30;
|
maximum_length = 30;
|
||||||
minimum_length = 0;
|
minimum_length = 0;
|
||||||
minimum_padding = 1;
|
minimum_padding = 1;
|
||||||
no_name_title = null;
|
no_name_title.__raw = "nil";
|
||||||
semantic_letters = true;
|
semantic_letters = true;
|
||||||
sidebar_filetypes = { };
|
sidebar_filetypes.__empty = { };
|
||||||
tabpages = true;
|
tabpages = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
@ -219,7 +219,7 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
letters = "asdfjkl;ghnmxcvbziowerutyqpASDFJKLGHNMXCVBZIOWERUTYQP";
|
letters = "asdfjkl;ghnmxcvbziowerutyqpASDFJKLGHNMXCVBZIOWERUTYQP";
|
||||||
no_name_title = null;
|
no_name_title.__raw = "nil";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -18,8 +18,8 @@
|
||||||
focus_blame = true;
|
focus_blame = true;
|
||||||
merge_consecutive = false;
|
merge_consecutive = false;
|
||||||
max_summary_width = 30;
|
max_summary_width = 30;
|
||||||
colors = null; # won't output literal nil
|
colors.__raw = "nil";
|
||||||
blame_options = null; # won't output literal nil
|
blame_options.__raw = "nil";
|
||||||
format_fn.__raw = "require('blame.formats.default_formats').commit_date_author_fn";
|
format_fn.__raw = "require('blame.formats.default_formats').commit_date_author_fn";
|
||||||
commit_detail_view = "vsplit";
|
commit_detail_view = "vsplit";
|
||||||
mappings = {
|
mappings = {
|
||||||
|
|
|
||||||
|
|
@ -59,9 +59,9 @@
|
||||||
"("
|
"("
|
||||||
")"
|
")"
|
||||||
];
|
];
|
||||||
override_brackets_for_filetypes = { };
|
override_brackets_for_filetypes.__empty = { };
|
||||||
force_allow_filetypes = [ ];
|
force_allow_filetypes.__empty = { };
|
||||||
blocked_filetypes = [ ];
|
blocked_filetypes.__empty = { };
|
||||||
kind_resolution = {
|
kind_resolution = {
|
||||||
enabled = true;
|
enabled = true;
|
||||||
blocked_filetypes = [
|
blocked_filetypes = [
|
||||||
|
|
@ -112,7 +112,7 @@
|
||||||
align_to = "label";
|
align_to = "label";
|
||||||
padding = 1;
|
padding = 1;
|
||||||
gap = 1;
|
gap = 1;
|
||||||
treesitter = { };
|
treesitter.__empty = { };
|
||||||
columns = [
|
columns = [
|
||||||
[ "kind_icon" ]
|
[ "kind_icon" ]
|
||||||
{
|
{
|
||||||
|
|
@ -232,9 +232,9 @@
|
||||||
prebuilt_binaries = {
|
prebuilt_binaries = {
|
||||||
download = true;
|
download = true;
|
||||||
ignore_version_mismatch = false;
|
ignore_version_mismatch = false;
|
||||||
force_version = null;
|
force_version.__raw = "nil";
|
||||||
force_system_triple = null;
|
force_system_triple.__raw = "nil";
|
||||||
extra_curl_args = [ ];
|
extra_curl_args.__empty = { };
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
sources = {
|
sources = {
|
||||||
|
|
@ -244,7 +244,7 @@
|
||||||
"snippets"
|
"snippets"
|
||||||
"buffer"
|
"buffer"
|
||||||
];
|
];
|
||||||
per_filetype = { };
|
per_filetype.__empty = { };
|
||||||
cmdline.__raw = ''
|
cmdline.__raw = ''
|
||||||
function()
|
function()
|
||||||
local type = vim.fn.getcmdtype()
|
local type = vim.fn.getcmdtype()
|
||||||
|
|
@ -310,8 +310,8 @@
|
||||||
enabled = false;
|
enabled = false;
|
||||||
trigger = {
|
trigger = {
|
||||||
enabled = true;
|
enabled = true;
|
||||||
blocked_trigger_characters = [ ];
|
blocked_trigger_characters.__empty = { };
|
||||||
blocked_retrigger_characters = [ ];
|
blocked_retrigger_characters.__empty = { };
|
||||||
show_on_insert_on_trigger_character = true;
|
show_on_insert_on_trigger_character = true;
|
||||||
};
|
};
|
||||||
window = {
|
window = {
|
||||||
|
|
@ -387,6 +387,8 @@
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# FIXME: This should be __empty but this config is out of date so it throws
|
||||||
cmdline = [ ];
|
cmdline = [ ];
|
||||||
};
|
};
|
||||||
completion = {
|
completion = {
|
||||||
|
|
|
||||||
|
|
@ -74,7 +74,7 @@
|
||||||
close_command = "bdelete! %d";
|
close_command = "bdelete! %d";
|
||||||
left_mouse_command = "buffer %d";
|
left_mouse_command = "buffer %d";
|
||||||
right_mouse_command = "bdelete! %d";
|
right_mouse_command = "bdelete! %d";
|
||||||
middle_mouse_command = null;
|
middle_mouse_command.__raw = "nil";
|
||||||
indicator = {
|
indicator = {
|
||||||
icon = "▎";
|
icon = "▎";
|
||||||
style = "icon";
|
style = "icon";
|
||||||
|
|
@ -82,14 +82,14 @@
|
||||||
left_trunc_marker = "";
|
left_trunc_marker = "";
|
||||||
right_trunc_marker = "";
|
right_trunc_marker = "";
|
||||||
separator_style = "thin";
|
separator_style = "thin";
|
||||||
name_formatter = null;
|
name_formatter.__raw = "nil";
|
||||||
truncate_names = true;
|
truncate_names = true;
|
||||||
tab_size = 18;
|
tab_size = 18;
|
||||||
max_name_length = 18;
|
max_name_length = 18;
|
||||||
color_icons = true;
|
color_icons = true;
|
||||||
show_buffer_icons = true;
|
show_buffer_icons = true;
|
||||||
show_buffer_close_icons = true;
|
show_buffer_close_icons = true;
|
||||||
get_element_icon = null;
|
get_element_icon.__raw = "nil";
|
||||||
show_close_icon = true;
|
show_close_icon = true;
|
||||||
show_tab_indicators = true;
|
show_tab_indicators = true;
|
||||||
show_duplicate_prefix = true;
|
show_duplicate_prefix = true;
|
||||||
|
|
@ -102,27 +102,27 @@
|
||||||
max_prefix_length = 15;
|
max_prefix_length = 15;
|
||||||
sort_by = "id";
|
sort_by = "id";
|
||||||
diagnostics = false;
|
diagnostics = false;
|
||||||
diagnostics_indicator = null;
|
diagnostics_indicator.__raw = "nil";
|
||||||
diagnostics_update_in_insert = true;
|
diagnostics_update_in_insert = true;
|
||||||
diagnostics_update_on_event = true;
|
diagnostics_update_on_event = true;
|
||||||
offsets = null;
|
offsets.__raw = "nil";
|
||||||
groups = {
|
groups = {
|
||||||
items = [ ];
|
items.__empty = { };
|
||||||
options = {
|
options = {
|
||||||
toggle_hidden_on_enter = true;
|
toggle_hidden_on_enter = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
hover = {
|
hover = {
|
||||||
enabled = false;
|
enabled = false;
|
||||||
reveal = [ ];
|
reveal.__empty = { };
|
||||||
delay = 200;
|
delay = 200;
|
||||||
};
|
};
|
||||||
debug = {
|
debug = {
|
||||||
logging = false;
|
logging = false;
|
||||||
};
|
};
|
||||||
custom_filter = null;
|
custom_filter.__raw = "nil";
|
||||||
};
|
};
|
||||||
highlights = { };
|
highlights.__empty = { };
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -33,8 +33,8 @@
|
||||||
lsp = true;
|
lsp = true;
|
||||||
highlighter = {
|
highlighter = {
|
||||||
auto_enable = false;
|
auto_enable = false;
|
||||||
filetypes = [ ];
|
filetypes.__empty = { };
|
||||||
excludes = [ ];
|
excludes.__empty = { };
|
||||||
lsp = true;
|
lsp = true;
|
||||||
update_insert = true;
|
update_insert = true;
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -52,8 +52,8 @@
|
||||||
"thumbs.db"
|
"thumbs.db"
|
||||||
".git"
|
".git"
|
||||||
];
|
];
|
||||||
name_glob = [ ];
|
name_glob.__empty = { };
|
||||||
path_glob = [ ];
|
path_glob.__empty = { };
|
||||||
};
|
};
|
||||||
view = {
|
view = {
|
||||||
open_direction = "left";
|
open_direction = "left";
|
||||||
|
|
|
||||||
|
|
@ -11,9 +11,9 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
||||||
settings = {
|
settings = {
|
||||||
api_key_cmd = null;
|
api_key_cmd.__raw = "nil";
|
||||||
yank_register = "+";
|
yank_register = "+";
|
||||||
extra_curl_params = [ ];
|
extra_curl_params.__empty = { };
|
||||||
show_line_numbers = true;
|
show_line_numbers = true;
|
||||||
edit_with_instructions = {
|
edit_with_instructions = {
|
||||||
diff = false;
|
diff = false;
|
||||||
|
|
@ -182,7 +182,7 @@
|
||||||
n = 1;
|
n = 1;
|
||||||
};
|
};
|
||||||
use_openai_functions_for_edits = false;
|
use_openai_functions_for_edits = false;
|
||||||
actions_paths = [ ];
|
actions_paths.__empty = { };
|
||||||
show_quickfixes_cmd = "Trouble quickfix";
|
show_quickfixes_cmd = "Trouble quickfix";
|
||||||
predefined_chat_gpt_prompts = "https://raw.githubusercontent.com/f/awesome-chatgpt-prompts/main/prompts.csv";
|
predefined_chat_gpt_prompts = "https://raw.githubusercontent.com/f/awesome-chatgpt-prompts/main/prompts.csv";
|
||||||
highlights = {
|
highlights = {
|
||||||
|
|
|
||||||
|
|
@ -11,14 +11,14 @@
|
||||||
enabled = true;
|
enabled = true;
|
||||||
cloak_character = "*";
|
cloak_character = "*";
|
||||||
highlight_group = "Comment";
|
highlight_group = "Comment";
|
||||||
cloak_length = null;
|
cloak_length.__raw = "nil";
|
||||||
try_all_patterns = true;
|
try_all_patterns = true;
|
||||||
cloak_telescope = true;
|
cloak_telescope = true;
|
||||||
patterns = [
|
patterns = [
|
||||||
{
|
{
|
||||||
file_pattern = ".env*";
|
file_pattern = ".env*";
|
||||||
cloak_pattern = "=.+";
|
cloak_pattern = "=.+";
|
||||||
replace = null;
|
replace.__raw = "nil";
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -14,11 +14,11 @@
|
||||||
cmake_generate_options = {
|
cmake_generate_options = {
|
||||||
"-DCMAKE_EXPORT_COMPILE_COMMANDS" = 1;
|
"-DCMAKE_EXPORT_COMPILE_COMMANDS" = 1;
|
||||||
};
|
};
|
||||||
cmake_build_options = { };
|
cmake_build_options.__empty = { };
|
||||||
cmake_build_directory = "out/\${variant:buildType}";
|
cmake_build_directory = "out/\${variant:buildType}";
|
||||||
cmake_soft_link_compile_commands = true;
|
cmake_soft_link_compile_commands = true;
|
||||||
cmake_compile_commands_from_lsp = false;
|
cmake_compile_commands_from_lsp = false;
|
||||||
cmake_kits_path = null;
|
cmake_kits_path.__raw = "nil";
|
||||||
|
|
||||||
cmake_variants_message = {
|
cmake_variants_message = {
|
||||||
short = {
|
short = {
|
||||||
|
|
@ -41,7 +41,7 @@
|
||||||
|
|
||||||
cmake_executor = {
|
cmake_executor = {
|
||||||
name = "quickfix";
|
name = "quickfix";
|
||||||
opts = { };
|
opts.__empty = { };
|
||||||
default_opts = {
|
default_opts = {
|
||||||
quickfix = {
|
quickfix = {
|
||||||
show = "always";
|
show = "always";
|
||||||
|
|
@ -84,7 +84,7 @@
|
||||||
|
|
||||||
cmake_runner = {
|
cmake_runner = {
|
||||||
name = "terminal";
|
name = "terminal";
|
||||||
opts = { };
|
opts.__empty = { };
|
||||||
default_opts = {
|
default_opts = {
|
||||||
quickfix = {
|
quickfix = {
|
||||||
show = "always";
|
show = "always";
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,7 @@
|
||||||
sort = true;
|
sort = true;
|
||||||
run_on_every_keystroke = true;
|
run_on_every_keystroke = true;
|
||||||
snippet_placeholder = "..";
|
snippet_placeholder = "..";
|
||||||
ignored_file_types = { };
|
ignored_file_types.__empty = { };
|
||||||
min_percent = 0;
|
min_percent = 0;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -21,7 +21,7 @@
|
||||||
};
|
};
|
||||||
opts = {
|
opts = {
|
||||||
allow_insecure = false;
|
allow_insecure = false;
|
||||||
proxy = null;
|
proxy.__raw = "nil";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
strategies = {
|
strategies = {
|
||||||
|
|
|
||||||
|
|
@ -8,14 +8,14 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
||||||
settings = {
|
settings = {
|
||||||
save_path = null;
|
save_path.__raw = "nil";
|
||||||
mac_window_bar = true;
|
mac_window_bar = true;
|
||||||
title = "CodeSnap.nvim";
|
title = "CodeSnap.nvim";
|
||||||
code_font_family = "CaskaydiaCove Nerd Font";
|
code_font_family = "CaskaydiaCove Nerd Font";
|
||||||
watermark_font_family = "Pacifico";
|
watermark_font_family = "Pacifico";
|
||||||
watermark = "CodeSnap.nvim";
|
watermark = "CodeSnap.nvim";
|
||||||
bg_theme = "default";
|
bg_theme = "default";
|
||||||
bg_color = null;
|
bg_color.__raw = "nil";
|
||||||
breadcrumbs_separator = "/";
|
breadcrumbs_separator = "/";
|
||||||
has_breadcrumbs = false;
|
has_breadcrumbs = false;
|
||||||
has_line_number = false;
|
has_line_number = false;
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
||||||
settings = {
|
settings = {
|
||||||
filetypes = { };
|
filetypes.__empty = { };
|
||||||
user_default_options = {
|
user_default_options = {
|
||||||
RGB = true;
|
RGB = true;
|
||||||
RRGGBB = true;
|
RRGGBB = true;
|
||||||
|
|
@ -30,7 +30,7 @@
|
||||||
virtualtext_mode = "foreground";
|
virtualtext_mode = "foreground";
|
||||||
always_update = false;
|
always_update = false;
|
||||||
};
|
};
|
||||||
buftypes = { };
|
buftypes.__empty = { };
|
||||||
user_commands = true;
|
user_commands = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@
|
||||||
settings = {
|
settings = {
|
||||||
padding = true;
|
padding = true;
|
||||||
sticky = true;
|
sticky = true;
|
||||||
ignore = null;
|
ignore.__raw = "nil";
|
||||||
toggler = {
|
toggler = {
|
||||||
line = "gcc";
|
line = "gcc";
|
||||||
block = "gbc";
|
block = "gbc";
|
||||||
|
|
@ -28,8 +28,8 @@
|
||||||
basic = true;
|
basic = true;
|
||||||
extra = true;
|
extra = true;
|
||||||
};
|
};
|
||||||
pre_hook = null;
|
pre_hook.__raw = "nil";
|
||||||
post_hook = null;
|
post_hook.__raw = "nil";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
||||||
settings = {
|
settings = {
|
||||||
formatters_by_ft = { };
|
formatters_by_ft.__empty = { };
|
||||||
format_on_save = {
|
format_on_save = {
|
||||||
lsp_format = "never";
|
lsp_format = "never";
|
||||||
timeout_ms = 1000;
|
timeout_ms = 1000;
|
||||||
|
|
@ -46,7 +46,7 @@
|
||||||
log_level = "error";
|
log_level = "error";
|
||||||
notify_on_error = true;
|
notify_on_error = true;
|
||||||
notify_no_formatters = true;
|
notify_no_formatters = true;
|
||||||
formatters = { };
|
formatters.__empty = { };
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -13,12 +13,12 @@
|
||||||
system_prompt = "require('CopilotChat.config.prompts').COPILOT_INSTRUCTIONS";
|
system_prompt = "require('CopilotChat.config.prompts').COPILOT_INSTRUCTIONS";
|
||||||
model = "gpt-4-o";
|
model = "gpt-4-o";
|
||||||
agent = "none";
|
agent = "none";
|
||||||
context = null;
|
context.__raw = "nil";
|
||||||
sticky = null;
|
sticky.__raw = "nil";
|
||||||
|
|
||||||
temperature = 0.1;
|
temperature = 0.1;
|
||||||
headless = false;
|
headless = false;
|
||||||
callback = null;
|
callback.__raw = "nil";
|
||||||
|
|
||||||
selection.__raw = ''
|
selection.__raw = ''
|
||||||
function(source)
|
function(source)
|
||||||
|
|
@ -33,10 +33,10 @@
|
||||||
height = 0.5;
|
height = 0.5;
|
||||||
relative = "editor";
|
relative = "editor";
|
||||||
border = "single";
|
border = "single";
|
||||||
row = null;
|
row.__raw = "nil";
|
||||||
col = null;
|
col.__raw = "nil";
|
||||||
title = "Copilot Chat";
|
title = "Copilot Chat";
|
||||||
footer = null;
|
footer.__raw = "nil";
|
||||||
zindex = 1;
|
zindex = 1;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -50,7 +50,7 @@
|
||||||
|
|
||||||
debug = false;
|
debug = false;
|
||||||
log_level = "info";
|
log_level = "info";
|
||||||
proxy = null;
|
proxy.__raw = "nil";
|
||||||
allow_insecure = false;
|
allow_insecure = false;
|
||||||
|
|
||||||
chat_autocomplete = true;
|
chat_autocomplete = true;
|
||||||
|
|
|
||||||
|
|
@ -17,7 +17,7 @@
|
||||||
editor = {
|
editor = {
|
||||||
client = "neovim";
|
client = "neovim";
|
||||||
tooltip = "The Superior Text Editor";
|
tooltip = "The Superior Text Editor";
|
||||||
icon = null;
|
icon.__raw = "nil";
|
||||||
};
|
};
|
||||||
display = {
|
display = {
|
||||||
theme = "default";
|
theme = "default";
|
||||||
|
|
@ -38,12 +38,12 @@
|
||||||
unidle_on_focus = true;
|
unidle_on_focus = true;
|
||||||
smart_idle = true;
|
smart_idle = true;
|
||||||
details = "Idling";
|
details = "Idling";
|
||||||
state = null;
|
state.__raw = "nil";
|
||||||
tooltip = "💤";
|
tooltip = "💤";
|
||||||
icon = null;
|
icon.__raw = "nil";
|
||||||
};
|
};
|
||||||
text = {
|
text = {
|
||||||
default = null;
|
default.__raw = "nil";
|
||||||
workspace.__raw = "function(opts) return 'In ' .. opts.workspace end";
|
workspace.__raw = "function(opts) return 'In ' .. opts.workspace end";
|
||||||
viewing.__raw = "function(opts) return 'Viewing ' .. opts.filename end";
|
viewing.__raw = "function(opts) return 'Viewing ' .. opts.filename end";
|
||||||
editing.__raw = "function(opts) return 'Editing ' .. opts.filename end";
|
editing.__raw = "function(opts) return 'Editing ' .. opts.filename end";
|
||||||
|
|
@ -60,19 +60,19 @@
|
||||||
terminal.__raw = "function(opts) return 'Running commands in ' .. opts.name end";
|
terminal.__raw = "function(opts) return 'Running commands in ' .. opts.name end";
|
||||||
dashboard = "Home";
|
dashboard = "Home";
|
||||||
};
|
};
|
||||||
buttons = null;
|
buttons.__raw = "nil";
|
||||||
assets = null;
|
assets.__raw = "nil";
|
||||||
variables = null;
|
variables.__raw = "nil";
|
||||||
hooks = {
|
hooks = {
|
||||||
ready = null;
|
ready.__raw = "nil";
|
||||||
shutdown = null;
|
shutdown.__raw = "nil";
|
||||||
pre_activity = null;
|
pre_activity.__raw = "nil";
|
||||||
post_activity = null;
|
post_activity.__raw = "nil";
|
||||||
idle_enter = null;
|
idle_enter.__raw = "nil";
|
||||||
idle_leave = null;
|
idle_leave.__raw = "nil";
|
||||||
workspace_change = null;
|
workspace_change.__raw = "nil";
|
||||||
};
|
};
|
||||||
plugins = null;
|
plugins.__raw = "nil";
|
||||||
advanced = {
|
advanced = {
|
||||||
plugin = {
|
plugin = {
|
||||||
autocmds = true;
|
autocmds = true;
|
||||||
|
|
@ -81,8 +81,8 @@
|
||||||
};
|
};
|
||||||
server = {
|
server = {
|
||||||
update = "fetch";
|
update = "fetch";
|
||||||
pipe_path = null;
|
pipe_path.__raw = "nil";
|
||||||
executable_path = null;
|
executable_path.__raw = "nil";
|
||||||
timeout = 300000;
|
timeout = 300000;
|
||||||
};
|
};
|
||||||
discord = {
|
discord = {
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,7 @@
|
||||||
use_global_binary = 0;
|
use_global_binary = 0;
|
||||||
agda_prefix = "<localleader>";
|
agda_prefix = "<localleader>";
|
||||||
no_agda_input = 0;
|
no_agda_input = 0;
|
||||||
bind_input_hook = null;
|
bind_input_hook.__raw = "nil";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -87,7 +87,7 @@
|
||||||
coverage_file = "coverage/coverage.json";
|
coverage_file = "coverage/coverage.json";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
lcov_file = null;
|
lcov_file.__raw = "nil";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -7,8 +7,8 @@
|
||||||
plugins.cutlass-nvim = {
|
plugins.cutlass-nvim = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
cut_key = "nil";
|
cut_key.__raw = "nil";
|
||||||
override_del = "nil";
|
override_del.__raw = "nil";
|
||||||
exclude.__empty = { };
|
exclude.__empty = { };
|
||||||
registers = {
|
registers = {
|
||||||
select = "_";
|
select = "_";
|
||||||
|
|
|
||||||
|
|
@ -21,7 +21,7 @@
|
||||||
path = "dlv";
|
path = "dlv";
|
||||||
initialize_timeout_sec = 20;
|
initialize_timeout_sec = 20;
|
||||||
port = "$\{port}";
|
port = "$\{port}";
|
||||||
args = [ ];
|
args.__empty = { };
|
||||||
build_flags = "-tags=unit";
|
build_flags = "-tags=unit";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -23,7 +23,7 @@
|
||||||
terminate = "";
|
terminate = "";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
element_mappings = { };
|
element_mappings.__empty = { };
|
||||||
expand_lines = true;
|
expand_lines = true;
|
||||||
floating = {
|
floating = {
|
||||||
border = "single";
|
border = "single";
|
||||||
|
|
|
||||||
|
|
@ -101,7 +101,7 @@
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
custom_sections = [ ];
|
custom_sections.__empty = { };
|
||||||
controls = {
|
controls = {
|
||||||
enabled = false;
|
enabled = false;
|
||||||
position = "right";
|
position = "right";
|
||||||
|
|
@ -115,7 +115,7 @@
|
||||||
"terminate"
|
"terminate"
|
||||||
"disconnect"
|
"disconnect"
|
||||||
];
|
];
|
||||||
custom_buttons = [ ];
|
custom_buttons.__empty = { };
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
windows = {
|
windows = {
|
||||||
|
|
@ -124,7 +124,7 @@
|
||||||
terminal = {
|
terminal = {
|
||||||
width = 0.5;
|
width = 0.5;
|
||||||
position = "left";
|
position = "left";
|
||||||
hide = { };
|
hide.__empty = { };
|
||||||
start_hidden = false;
|
start_hidden = false;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
@ -144,7 +144,7 @@
|
||||||
terminate = "";
|
terminate = "";
|
||||||
};
|
};
|
||||||
help = {
|
help = {
|
||||||
border = null;
|
border.__raw = "nil";
|
||||||
};
|
};
|
||||||
switchbuf = "usetab";
|
switchbuf = "usetab";
|
||||||
auto_toggle = false;
|
auto_toggle = false;
|
||||||
|
|
|
||||||
|
|
@ -22,7 +22,7 @@
|
||||||
week_header = {
|
week_header = {
|
||||||
enable = false;
|
enable = false;
|
||||||
concat = "";
|
concat = "";
|
||||||
append = [ ];
|
append.__empty = { };
|
||||||
};
|
};
|
||||||
header = [
|
header = [
|
||||||
""
|
""
|
||||||
|
|
@ -43,7 +43,7 @@
|
||||||
|
|
||||||
preview = {
|
preview = {
|
||||||
command = "";
|
command = "";
|
||||||
file_path = null;
|
file_path.__raw = "nil";
|
||||||
file_height = 0;
|
file_height = 0;
|
||||||
file_width = 0;
|
file_width = 0;
|
||||||
};
|
};
|
||||||
|
|
@ -85,7 +85,7 @@
|
||||||
cwd_only = false;
|
cwd_only = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
footer = [ ];
|
footer.__empty = { };
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
@ -111,7 +111,7 @@
|
||||||
action = "";
|
action = "";
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
footer = [ ];
|
footer.__empty = { };
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -8,16 +8,16 @@
|
||||||
plugins.dbee = {
|
plugins.dbee = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
default_connection = null;
|
default_connection.__raw = "nil";
|
||||||
sources = [
|
sources = [
|
||||||
(lib.nixvim.mkRaw "require('dbee.sources').EnvSource:new('DBEE_CONNECTIONS')")
|
(lib.nixvim.mkRaw "require('dbee.sources').EnvSource:new('DBEE_CONNECTIONS')")
|
||||||
(lib.nixvim.mkRaw "require('dbee.sources').FileSource:new(vim.fn.stdpath('state') .. '/dbee/persistence.json')")
|
(lib.nixvim.mkRaw "require('dbee.sources').FileSource:new(vim.fn.stdpath('state') .. '/dbee/persistence.json')")
|
||||||
];
|
];
|
||||||
extra_helpers = { };
|
extra_helpers.__empty = { };
|
||||||
float_options = { };
|
float_options.__empty = { };
|
||||||
drawer = {
|
drawer = {
|
||||||
window_options = { };
|
window_options.__empty = { };
|
||||||
buffer_options = { };
|
buffer_options.__empty = { };
|
||||||
disable_help = false;
|
disable_help = false;
|
||||||
mappings = [
|
mappings = [
|
||||||
{
|
{
|
||||||
|
|
@ -176,8 +176,8 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
result = {
|
result = {
|
||||||
window_options = { };
|
window_options.__empty = { };
|
||||||
buffer_options = { };
|
buffer_options.__empty = { };
|
||||||
page_size = 100;
|
page_size = 100;
|
||||||
focus_result = true;
|
focus_result = true;
|
||||||
progress = {
|
progress = {
|
||||||
|
|
@ -254,8 +254,8 @@
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
editor = {
|
editor = {
|
||||||
window_options = { };
|
window_options.__empty = { };
|
||||||
buffer_options = { };
|
buffer_options.__empty = { };
|
||||||
mappings = [
|
mappings = [
|
||||||
{
|
{
|
||||||
key = "BB";
|
key = "BB";
|
||||||
|
|
@ -270,8 +270,8 @@
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
call_log = {
|
call_log = {
|
||||||
window_options = { };
|
window_options.__empty = { };
|
||||||
buffer_options = { };
|
buffer_options.__empty = { };
|
||||||
mappings = [
|
mappings = [
|
||||||
{
|
{
|
||||||
key = "<CR>";
|
key = "<CR>";
|
||||||
|
|
|
||||||
|
|
@ -14,7 +14,7 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
||||||
settings = {
|
settings = {
|
||||||
ensure_installed = [ ];
|
ensure_installed.__empty = { };
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -16,26 +16,26 @@
|
||||||
settings = {
|
settings = {
|
||||||
renderer_options = {
|
renderer_options = {
|
||||||
mermaid = {
|
mermaid = {
|
||||||
background = null;
|
background.__raw = "nil";
|
||||||
theme = null;
|
theme.__raw = "nil";
|
||||||
scale = 1;
|
scale = 1;
|
||||||
width = null;
|
width.__raw = "nil";
|
||||||
height = null;
|
height.__raw = "nil";
|
||||||
};
|
};
|
||||||
plantuml = {
|
plantuml = {
|
||||||
charset = null;
|
charset.__raw = "nil";
|
||||||
};
|
};
|
||||||
d2 = {
|
d2 = {
|
||||||
theme_id = null;
|
theme_id.__raw = "nil";
|
||||||
dark_theme_id = null;
|
dark_theme_id.__raw = "nil";
|
||||||
scale = null;
|
scale.__raw = "nil";
|
||||||
layout = null;
|
layout.__raw = "nil";
|
||||||
sketch = null;
|
sketch.__raw = "nil";
|
||||||
};
|
};
|
||||||
gnuplot = {
|
gnuplot = {
|
||||||
size = null;
|
size.__raw = "nil";
|
||||||
font = null;
|
font.__raw = "nil";
|
||||||
theme = null;
|
theme.__raw = "nil";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -50,7 +50,7 @@
|
||||||
win_config = {
|
win_config = {
|
||||||
position = "right";
|
position = "right";
|
||||||
width = 20;
|
width = 20;
|
||||||
win_opts = { };
|
win_opts.__empty = { };
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
file_history_panel = {
|
file_history_panel = {
|
||||||
|
|
@ -63,14 +63,14 @@
|
||||||
multi_file.diff_merges = "first-parent";
|
multi_file.diff_merges = "first-parent";
|
||||||
};
|
};
|
||||||
hg = {
|
hg = {
|
||||||
single_file = { };
|
single_file.__empty = { };
|
||||||
multi_file = { };
|
multi_file.__empty = { };
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
win_config = {
|
win_config = {
|
||||||
position = "top";
|
position = "top";
|
||||||
height = 10;
|
height = 10;
|
||||||
win_opts = { };
|
win_opts.__empty = { };
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -21,8 +21,8 @@
|
||||||
return os_name == 'windows' and 'distant.exe' or 'distant'
|
return os_name == 'windows' and 'distant.exe' or 'distant'
|
||||||
end)()
|
end)()
|
||||||
'';
|
'';
|
||||||
log_file = null;
|
log_file.__raw = "nil";
|
||||||
log_level = null;
|
log_level.__raw = "nil";
|
||||||
};
|
};
|
||||||
keymap = {
|
keymap = {
|
||||||
dir = {
|
dir = {
|
||||||
|
|
@ -63,8 +63,8 @@
|
||||||
manager = {
|
manager = {
|
||||||
daemon = false;
|
daemon = false;
|
||||||
lazy = true;
|
lazy = true;
|
||||||
log_file = null;
|
log_file.__raw = "nil";
|
||||||
log_level = null;
|
log_level.__raw = "nil";
|
||||||
user = false;
|
user = false;
|
||||||
};
|
};
|
||||||
network = {
|
network = {
|
||||||
|
|
@ -73,15 +73,15 @@
|
||||||
max = 15000;
|
max = 15000;
|
||||||
interval = 256;
|
interval = 256;
|
||||||
};
|
};
|
||||||
windows_pipe = null;
|
windows_pipe.__raw = "nil";
|
||||||
unix_socket = null;
|
unix_socket.__raw = "nil";
|
||||||
};
|
};
|
||||||
servers = {
|
servers = {
|
||||||
"*" = {
|
"*" = {
|
||||||
connect.default = { };
|
connect.default = { };
|
||||||
cwd = null;
|
cwd.__raw = "nil";
|
||||||
launch.default = { };
|
launch.default = { };
|
||||||
lsp = { };
|
lsp.__empty = { };
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,7 @@
|
||||||
border = "rounded";
|
border = "rounded";
|
||||||
relative = "cursor";
|
relative = "cursor";
|
||||||
prefer_width = 40;
|
prefer_width = 40;
|
||||||
width = null;
|
width.__raw = "nil";
|
||||||
max_width = [
|
max_width = [
|
||||||
140
|
140
|
||||||
0.9
|
0.9
|
||||||
|
|
@ -46,7 +46,7 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
override = "function(conf) return conf end";
|
override = "function(conf) return conf end";
|
||||||
get_config = null;
|
get_config.__raw = "nil";
|
||||||
};
|
};
|
||||||
select = {
|
select = {
|
||||||
enabled = true;
|
enabled = true;
|
||||||
|
|
@ -58,15 +58,15 @@
|
||||||
"nui"
|
"nui"
|
||||||
];
|
];
|
||||||
trim_prompt = true;
|
trim_prompt = true;
|
||||||
telescope = null;
|
telescope.__raw = "nil";
|
||||||
fzf.window = {
|
fzf.window = {
|
||||||
width = 0.5;
|
width = 0.5;
|
||||||
height = 0.4;
|
height = 0.4;
|
||||||
};
|
};
|
||||||
fzf_lua = { };
|
fzf_lua.__empty = { };
|
||||||
nui = {
|
nui = {
|
||||||
position = "50%";
|
position = "50%";
|
||||||
size = null;
|
size.__raw = "nil";
|
||||||
relative = "editor";
|
relative = "editor";
|
||||||
border = {
|
border = {
|
||||||
style = "rounded";
|
style = "rounded";
|
||||||
|
|
@ -88,13 +88,13 @@
|
||||||
border = "rounded";
|
border = "rounded";
|
||||||
relative = "editor";
|
relative = "editor";
|
||||||
|
|
||||||
buf_options = { };
|
buf_options.__empty = { };
|
||||||
win_options = {
|
win_options = {
|
||||||
cursorline = true;
|
cursorline = true;
|
||||||
cursorlineopt = "both";
|
cursorlineopt = "both";
|
||||||
};
|
};
|
||||||
|
|
||||||
width = null;
|
width.__raw = "nil";
|
||||||
max_width = [
|
max_width = [
|
||||||
140
|
140
|
||||||
0.8
|
0.8
|
||||||
|
|
@ -103,7 +103,7 @@
|
||||||
40
|
40
|
||||||
0.2
|
0.2
|
||||||
];
|
];
|
||||||
height = null;
|
height.__raw = "nil";
|
||||||
max_height = 0.9;
|
max_height = 0.9;
|
||||||
min_height = [
|
min_height = [
|
||||||
10
|
10
|
||||||
|
|
@ -118,8 +118,8 @@
|
||||||
|
|
||||||
override = "function(conf) return conf end";
|
override = "function(conf) return conf end";
|
||||||
};
|
};
|
||||||
format_item_override = { };
|
format_item_override.__empty = { };
|
||||||
get_config = null;
|
get_config.__raw = "nil";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -133,7 +133,7 @@
|
||||||
desc = "refresh testrunner";
|
desc = "refresh testrunner";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
additional_args = [ ];
|
additional_args.__empty = { };
|
||||||
};
|
};
|
||||||
csproj_mappings = true;
|
csproj_mappings = true;
|
||||||
fsproj_mappings = true;
|
fsproj_mappings = true;
|
||||||
|
|
|
||||||
|
|
@ -8,26 +8,26 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
||||||
settings = {
|
settings = {
|
||||||
left = [ ];
|
left.__empty = { };
|
||||||
bottom = [ ];
|
bottom.__empty = { };
|
||||||
right = [ ];
|
right.__empty = { };
|
||||||
top = [ ];
|
top.__empty = { };
|
||||||
options = {
|
options = {
|
||||||
left = {
|
left = {
|
||||||
size = 30;
|
size = 30;
|
||||||
wo = null;
|
wo.__raw = "nil";
|
||||||
};
|
};
|
||||||
bottom = {
|
bottom = {
|
||||||
size = 10;
|
size = 10;
|
||||||
wo = null;
|
wo.__raw = "nil";
|
||||||
};
|
};
|
||||||
right = {
|
right = {
|
||||||
size = 30;
|
size = 30;
|
||||||
wo = null;
|
wo.__raw = "nil";
|
||||||
};
|
};
|
||||||
top = {
|
top = {
|
||||||
size = 10;
|
size = 10;
|
||||||
wo = null;
|
wo.__raw = "nil";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
animate = {
|
animate = {
|
||||||
|
|
|
||||||
|
|
@ -17,11 +17,11 @@
|
||||||
html = {
|
html = {
|
||||||
default_attributes = {
|
default_attributes = {
|
||||||
option = {
|
option = {
|
||||||
value = null;
|
value.__raw = "nil";
|
||||||
};
|
};
|
||||||
textarea = {
|
textarea = {
|
||||||
id = null;
|
id.__raw = "nil";
|
||||||
name = null;
|
name.__raw = "nil";
|
||||||
cols = 10;
|
cols = 10;
|
||||||
rows = 10;
|
rows = 10;
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -10,8 +10,8 @@
|
||||||
highlight_on_key = false;
|
highlight_on_key = false;
|
||||||
dim = false;
|
dim = false;
|
||||||
max_length = 9999;
|
max_length = 9999;
|
||||||
disabled_filetypes = [ ];
|
disabled_filetypes.__empty = { };
|
||||||
disabled_buftypes = [ ];
|
disabled_buftypes.__empty = { };
|
||||||
default_keymaps = true;
|
default_keymaps = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -22,7 +22,7 @@
|
||||||
];
|
];
|
||||||
filesize = 2;
|
filesize = 2;
|
||||||
pattern = "*";
|
pattern = "*";
|
||||||
extra_patterns = [ ];
|
extra_patterns.__empty = { };
|
||||||
};
|
};
|
||||||
fastmacro = {
|
fastmacro = {
|
||||||
on = true;
|
on = true;
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
return client and client.name or nil
|
return client and client.name or nil
|
||||||
end
|
end
|
||||||
'';
|
'';
|
||||||
ignore = [ ];
|
ignore.__empty = { };
|
||||||
display = {
|
display = {
|
||||||
render_limit = 16;
|
render_limit = 16;
|
||||||
done_ttl = 3;
|
done_ttl = 3;
|
||||||
|
|
|
||||||
|
|
@ -38,8 +38,8 @@
|
||||||
register = false;
|
register = false;
|
||||||
nohlsearch = false;
|
nohlsearch = false;
|
||||||
autojump = false;
|
autojump = false;
|
||||||
inclusive = null;
|
inclusive.__raw = "nil";
|
||||||
offset = null;
|
offset.__raw = "nil";
|
||||||
};
|
};
|
||||||
label = {
|
label = {
|
||||||
uppercase = true;
|
uppercase = true;
|
||||||
|
|
@ -72,10 +72,10 @@
|
||||||
label = "FlashLabel";
|
label = "FlashLabel";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
action = null;
|
action.__raw = "nil";
|
||||||
pattern = "";
|
pattern = "";
|
||||||
continue = false;
|
continue = false;
|
||||||
config = null;
|
config.__raw = "nil";
|
||||||
prompt = {
|
prompt = {
|
||||||
enabled = true;
|
enabled = true;
|
||||||
prefix = [
|
prefix = [
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@
|
||||||
labeled_modes = "v";
|
labeled_modes = "v";
|
||||||
clever_repeat = true;
|
clever_repeat = true;
|
||||||
multiline = true;
|
multiline = true;
|
||||||
opts = { };
|
opts.__empty = { };
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
||||||
settings = {
|
settings = {
|
||||||
shell = null;
|
shell.__raw = "nil";
|
||||||
title = "floaterm: $1/$2";
|
title = "floaterm: $1/$2";
|
||||||
wintype = "float";
|
wintype = "float";
|
||||||
width = 0.6;
|
width = 0.6;
|
||||||
|
|
|
||||||
|
|
@ -20,11 +20,11 @@
|
||||||
};
|
};
|
||||||
debugger = {
|
debugger = {
|
||||||
enabled = false;
|
enabled = false;
|
||||||
exception_breakpoints = null;
|
exception_breakpoints.__raw = "nil";
|
||||||
evaluate_to_string_in_debug_views = true;
|
evaluate_to_string_in_debug_views = true;
|
||||||
register_configurations = null;
|
register_configurations.__raw = "nil";
|
||||||
};
|
};
|
||||||
flutter_path = null;
|
flutter_path.__raw = "nil";
|
||||||
flutter_lookup_cmd.__raw = ''
|
flutter_lookup_cmd.__raw = ''
|
||||||
(function()
|
(function()
|
||||||
local exepath = vim.fn.exepath("flutter")
|
local exepath = vim.fn.exepath("flutter")
|
||||||
|
|
@ -48,7 +48,7 @@
|
||||||
};
|
};
|
||||||
dev_log = {
|
dev_log = {
|
||||||
enabled = true;
|
enabled = true;
|
||||||
filter = null;
|
filter.__raw = "nil";
|
||||||
notify_errors = false;
|
notify_errors = false;
|
||||||
open_cmd.__raw = "('botright %dvnew'):format(math.max(vim.o.columns * 0.4, 50))";
|
open_cmd.__raw = "('botright %dvnew'):format(math.max(vim.o.columns * 0.4, 50))";
|
||||||
focus_on_open = true;
|
focus_on_open = true;
|
||||||
|
|
@ -65,14 +65,14 @@
|
||||||
color = {
|
color = {
|
||||||
enabled = false;
|
enabled = false;
|
||||||
background = false;
|
background = false;
|
||||||
background_color = null;
|
background_color.__raw = "nil";
|
||||||
foreground = false;
|
foreground = false;
|
||||||
virtual_text = true;
|
virtual_text = true;
|
||||||
virtual_text_str = "■";
|
virtual_text_str = "■";
|
||||||
};
|
};
|
||||||
on_attach = null;
|
on_attach.__raw = "nil";
|
||||||
capabilities = null;
|
capabilities.__raw = "nil";
|
||||||
settings = null;
|
settings.__raw = "nil";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -14,13 +14,13 @@
|
||||||
content_width = 60;
|
content_width = 60;
|
||||||
height = "60%";
|
height = "60%";
|
||||||
show_patch = false;
|
show_patch = false;
|
||||||
libgit2_path = null;
|
libgit2_path.__raw = "nil";
|
||||||
gpgme_path = "gpgme";
|
gpgme_path = "gpgme";
|
||||||
external_diffview = false;
|
external_diffview = false;
|
||||||
blame_priority = 1;
|
blame_priority = 1;
|
||||||
blame_info_width = 60;
|
blame_info_width = 60;
|
||||||
blame_info_height = 10;
|
blame_info_height = 10;
|
||||||
colorscheme = null;
|
colorscheme.__raw = "nil";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,7 @@
|
||||||
highlights = {
|
highlights = {
|
||||||
incoming = "DiffAdd";
|
incoming = "DiffAdd";
|
||||||
current = "DiffText";
|
current = "DiffText";
|
||||||
ancestor = null;
|
ancestor.__raw = "nil";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -13,11 +13,11 @@
|
||||||
date_format = "%c";
|
date_format = "%c";
|
||||||
message_when_not_committed = " Not Committed Yet";
|
message_when_not_committed = " Not Committed Yet";
|
||||||
highlight_group = "Comment";
|
highlight_group = "Comment";
|
||||||
set_extmark_options = { };
|
set_extmark_options.__empty = { };
|
||||||
display_virtual_text = true;
|
display_virtual_text = true;
|
||||||
ignored_filetypes = [ ];
|
ignored_filetypes.__empty = { };
|
||||||
delay = 250;
|
delay = 250;
|
||||||
virtual_text_column = null;
|
virtual_text_column.__raw = "nil";
|
||||||
use_blame_commit_file_urls = false;
|
use_blame_commit_file_urls = false;
|
||||||
schedule_event = "CursorMoved";
|
schedule_event = "CursorMoved";
|
||||||
clear_event = "CursorMovedI";
|
clear_event = "CursorMovedI";
|
||||||
|
|
|
||||||
|
|
@ -56,7 +56,7 @@
|
||||||
};
|
};
|
||||||
telemetry = {
|
telemetry = {
|
||||||
enabled = true;
|
enabled = true;
|
||||||
trackingUrl = null;
|
trackingUrl.__raw = "nil";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -30,7 +30,7 @@
|
||||||
|
|
||||||
settings = {
|
settings = {
|
||||||
opts = {
|
opts = {
|
||||||
remote = null;
|
remote.__raw = "nil";
|
||||||
add_current_line_on_normal_mode = true;
|
add_current_line_on_normal_mode = true;
|
||||||
action_callback = lib.nixvim.mkRaw "require('gitlinker.actions').copy_to_clipboard";
|
action_callback = lib.nixvim.mkRaw "require('gitlinker.actions').copy_to_clipboard";
|
||||||
print_url = true;
|
print_url = true;
|
||||||
|
|
|
||||||
|
|
@ -16,11 +16,11 @@
|
||||||
always_into_popup = false;
|
always_into_popup = false;
|
||||||
extra_blame_args = "";
|
extra_blame_args = "";
|
||||||
preview_mods = "";
|
preview_mods = "";
|
||||||
max_popup_height = null;
|
max_popup_height.__raw = "nil";
|
||||||
max_popup_width = null;
|
max_popup_width.__raw = "nil";
|
||||||
date_format = "%c";
|
date_format = "%c";
|
||||||
conceal_word_diff_marker = true;
|
conceal_word_diff_marker = true;
|
||||||
floating_win_opts = { };
|
floating_win_opts.__empty = { };
|
||||||
popup_content_margins = true;
|
popup_content_margins = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -45,13 +45,13 @@
|
||||||
internal = false;
|
internal = false;
|
||||||
indent_heuristic = false;
|
indent_heuristic = false;
|
||||||
vertical = true;
|
vertical = true;
|
||||||
linematch = null;
|
linematch.__raw = "nil";
|
||||||
ignore_blank_lines = true;
|
ignore_blank_lines = true;
|
||||||
ignore_whitespace_change = true;
|
ignore_whitespace_change = true;
|
||||||
ignore_whitespace = true;
|
ignore_whitespace = true;
|
||||||
ignore_whitespace_change_at_eol = true;
|
ignore_whitespace_change_at_eol = true;
|
||||||
};
|
};
|
||||||
base = null;
|
base.__raw = "nil";
|
||||||
count_chars = {
|
count_chars = {
|
||||||
"__unkeyed_1" = "1";
|
"__unkeyed_1" = "1";
|
||||||
"__unkeyed_2" = "2";
|
"__unkeyed_2" = "2";
|
||||||
|
|
|
||||||
|
|
@ -65,7 +65,7 @@
|
||||||
"<leader>l".__raw = ''require('glance').actions.enter_win("list")'';
|
"<leader>l".__raw = ''require('glance').actions.enter_win("list")'';
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
hooks = { };
|
hooks.__empty = { };
|
||||||
folds = {
|
folds = {
|
||||||
fold_closed = "";
|
fold_closed = "";
|
||||||
fold_open = "";
|
fold_open = "";
|
||||||
|
|
|
||||||
|
|
@ -22,13 +22,13 @@
|
||||||
];
|
];
|
||||||
default_mappings = false;
|
default_mappings = false;
|
||||||
debug = false;
|
debug = false;
|
||||||
opacity = null;
|
opacity.__raw = "nil";
|
||||||
resizing_mappings = false;
|
resizing_mappings = false;
|
||||||
post_open_hook = null;
|
post_open_hook.__raw = "nil";
|
||||||
post_close_hook = null;
|
post_close_hook.__raw = "nil";
|
||||||
references = {
|
references = {
|
||||||
provider = "telescope";
|
provider = "telescope";
|
||||||
telescope = null;
|
telescope.__raw = "nil";
|
||||||
};
|
};
|
||||||
focus_on_open = true;
|
focus_on_open = true;
|
||||||
dismiss_on_move = false;
|
dismiss_on_move = false;
|
||||||
|
|
|
||||||
|
|
@ -10,9 +10,9 @@
|
||||||
disableNetrwGx = true;
|
disableNetrwGx = true;
|
||||||
|
|
||||||
settings = {
|
settings = {
|
||||||
open_browser_app = null;
|
open_browser_app.__raw = "nil";
|
||||||
open_browser_args = [ ];
|
open_browser_args.__empty = { };
|
||||||
handlers = { };
|
handlers.__empty = { };
|
||||||
handler_options = {
|
handler_options = {
|
||||||
search_engine = "google";
|
search_engine = "google";
|
||||||
select_for_search = false;
|
select_for_search = false;
|
||||||
|
|
|
||||||
|
|
@ -8,16 +8,16 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
||||||
settings = {
|
settings = {
|
||||||
buf_ignore = null;
|
buf_ignore.__raw = "nil";
|
||||||
mode = [
|
mode = [
|
||||||
"n"
|
"n"
|
||||||
"c"
|
"c"
|
||||||
];
|
];
|
||||||
hybrid_modes = null;
|
hybrid_modes.__raw = "nil";
|
||||||
callback = {
|
callback = {
|
||||||
on_enable = null;
|
on_enable.__raw = "nil";
|
||||||
on_disable = null;
|
on_disable.__raw = "nil";
|
||||||
on_mode_change = null;
|
on_mode_change.__raw = "nil";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -18,13 +18,13 @@
|
||||||
enable_short_hex = true;
|
enable_short_hex = true;
|
||||||
enable_tailwind = false;
|
enable_tailwind = false;
|
||||||
enable_ansi = false;
|
enable_ansi = false;
|
||||||
custom_colors = null;
|
custom_colors.__raw = "nil";
|
||||||
virtual_symbol = "■";
|
virtual_symbol = "■";
|
||||||
virtual_symbol_prefix = "";
|
virtual_symbol_prefix = "";
|
||||||
virtual_symbol_suffix = " ";
|
virtual_symbol_suffix = " ";
|
||||||
virtual_symbol_position = "inline";
|
virtual_symbol_position = "inline";
|
||||||
exclude_filetypes = { };
|
exclude_filetypes.__empty = { };
|
||||||
exclude_buftypes = { };
|
exclude_buftypes.__empty = { };
|
||||||
exclude_buffer.__raw = "function(bufnr) end";
|
exclude_buffer.__raw = "function(bufnr) end";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,7 @@
|
||||||
let
|
let
|
||||||
modDefaultConfig = {
|
modDefaultConfig = {
|
||||||
enable = false;
|
enable = false;
|
||||||
style = { };
|
style.__empty = { };
|
||||||
notify = false;
|
notify = false;
|
||||||
priority = 0;
|
priority = 0;
|
||||||
exclude_filetypes = {
|
exclude_filetypes = {
|
||||||
|
|
|
||||||
|
|
@ -98,17 +98,17 @@
|
||||||
case_insensitive = true;
|
case_insensitive = true;
|
||||||
create_hl_autocmd = true;
|
create_hl_autocmd = true;
|
||||||
dim_unmatched = true;
|
dim_unmatched = true;
|
||||||
direction = null;
|
direction.__raw = "nil";
|
||||||
hint_position = "require'hop.hint'.HintPosition.BEGIN";
|
hint_position = "require'hop.hint'.HintPosition.BEGIN";
|
||||||
hint_type = "require'hop.hint'.HintType.OVERLAY";
|
hint_type = "require'hop.hint'.HintType.OVERLAY";
|
||||||
hint_offset = 0;
|
hint_offset = 0;
|
||||||
current_line_only = false;
|
current_line_only = false;
|
||||||
uppercase_labels = false;
|
uppercase_labels = false;
|
||||||
yank_register = "";
|
yank_register = "";
|
||||||
extensions = null;
|
extensions.__raw = "nil";
|
||||||
multi_windows = false;
|
multi_windows = false;
|
||||||
excluded_filetypes = [ ];
|
excluded_filetypes.__empty = { };
|
||||||
match_mappings = [ ];
|
match_mappings.__empty = { };
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -10,14 +10,14 @@
|
||||||
settings = {
|
settings = {
|
||||||
debug = false;
|
debug = false;
|
||||||
exit = false;
|
exit = false;
|
||||||
foreign_keys = null;
|
foreign_keys.__raw = "nil";
|
||||||
color = "red";
|
color = "red";
|
||||||
buffer = null;
|
buffer.__raw = "nil";
|
||||||
invoke_on_body = false;
|
invoke_on_body = false;
|
||||||
desc = null;
|
desc.__raw = "nil";
|
||||||
on_enter = null;
|
on_enter.__raw = "nil";
|
||||||
on_exit = null;
|
on_exit.__raw = "nil";
|
||||||
on_key = null;
|
on_key.__raw = "nil";
|
||||||
timeout = false;
|
timeout = false;
|
||||||
hint = {
|
hint = {
|
||||||
show_name = true;
|
show_name = true;
|
||||||
|
|
@ -42,7 +42,7 @@
|
||||||
color = "red";
|
color = "red";
|
||||||
buffer = true;
|
buffer = true;
|
||||||
invoke_on_body = false;
|
invoke_on_body = false;
|
||||||
desc = null;
|
desc.__raw = "nil";
|
||||||
on_enter = ''
|
on_enter = ''
|
||||||
function()
|
function()
|
||||||
print('hello')
|
print('hello')
|
||||||
|
|
|
||||||
|
|
@ -14,20 +14,20 @@
|
||||||
"regex"
|
"regex"
|
||||||
];
|
];
|
||||||
delay = 100;
|
delay = 100;
|
||||||
filetype_overrides = { };
|
filetype_overrides.__empty = { };
|
||||||
filetypes_denylist = [
|
filetypes_denylist = [
|
||||||
"dirbuf"
|
"dirbuf"
|
||||||
"dirvish"
|
"dirvish"
|
||||||
"fugitive"
|
"fugitive"
|
||||||
];
|
];
|
||||||
filetypes_allowlist = [ ];
|
filetypes_allowlist.__empty = { };
|
||||||
modes_denylist = [ ];
|
modes_denylist.__empty = { };
|
||||||
modes_allowlist = [ ];
|
modes_allowlist.__empty = { };
|
||||||
providers_regex_syntax_denylist = [ ];
|
providers_regex_syntax_denylist.__empty = { };
|
||||||
providers_regex_syntax_allowlist = [ ];
|
providers_regex_syntax_allowlist.__empty = { };
|
||||||
under_cursor = true;
|
under_cursor = true;
|
||||||
large_file_cutoff = 10000;
|
large_file_cutoff = 10000;
|
||||||
large_file_overrides = null;
|
large_file_overrides.__raw = "nil";
|
||||||
min_count_to_highlight = 1;
|
min_count_to_highlight = 1;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -26,8 +26,8 @@
|
||||||
html.enabled = false;
|
html.enabled = false;
|
||||||
css.enabled = false;
|
css.enabled = false;
|
||||||
};
|
};
|
||||||
max_width = null;
|
max_width.__raw = "nil";
|
||||||
max_height = null;
|
max_height.__raw = "nil";
|
||||||
max_width_window_percentage = 100;
|
max_width_window_percentage = 100;
|
||||||
max_height_window_percentage = 50;
|
max_height_window_percentage = 50;
|
||||||
scale_factor = 1.0;
|
scale_factor = 1.0;
|
||||||
|
|
|
||||||
|
|
@ -13,8 +13,8 @@
|
||||||
preview_empty_name = false;
|
preview_empty_name = false;
|
||||||
show_message = true;
|
show_message = true;
|
||||||
save_in_cmdline_history = true;
|
save_in_cmdline_history = true;
|
||||||
input_buffer_type = null;
|
input_buffer_type.__raw = "nil";
|
||||||
post_hook = null;
|
post_hook.__raw = "nil";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -48,29 +48,29 @@
|
||||||
};
|
};
|
||||||
indent = {
|
indent = {
|
||||||
char = "▎";
|
char = "▎";
|
||||||
tab_char = null;
|
tab_char.__raw = "nil";
|
||||||
highlight = null;
|
highlight.__raw = "nil";
|
||||||
smart_indent_cap = true;
|
smart_indent_cap = true;
|
||||||
priority = 1;
|
priority = 1;
|
||||||
};
|
};
|
||||||
whitespace = {
|
whitespace = {
|
||||||
highlight = null;
|
highlight.__raw = "nil";
|
||||||
remove_blankline_trail = true;
|
remove_blankline_trail = true;
|
||||||
};
|
};
|
||||||
scope = {
|
scope = {
|
||||||
enabled = true;
|
enabled = true;
|
||||||
char = null;
|
char.__raw = "nil";
|
||||||
show_start = true;
|
show_start = true;
|
||||||
show_end = true;
|
show_end = true;
|
||||||
show_exact_scope = false;
|
show_exact_scope = false;
|
||||||
injected_languages = true;
|
injected_languages = true;
|
||||||
highlight = null;
|
highlight.__raw = "nil";
|
||||||
priority = 1024;
|
priority = 1024;
|
||||||
include = {
|
include = {
|
||||||
node_type = { };
|
node_type.__empty = { };
|
||||||
};
|
};
|
||||||
exclude = {
|
exclude = {
|
||||||
language = [ ];
|
language.__empty = { };
|
||||||
node_type = {
|
node_type = {
|
||||||
"*" = [
|
"*" = [
|
||||||
"source_file"
|
"source_file"
|
||||||
|
|
|
||||||
|
|
@ -9,28 +9,28 @@
|
||||||
|
|
||||||
settings = {
|
settings = {
|
||||||
scratch_repl = false;
|
scratch_repl = false;
|
||||||
repl_definition = { };
|
repl_definition.__empty = { };
|
||||||
repl_open_cmd.__raw = ''
|
repl_open_cmd.__raw = ''
|
||||||
require("iron.view").split.botright(40)
|
require("iron.view").split.botright(40)
|
||||||
'';
|
'';
|
||||||
highlight = { };
|
highlight.__empty = { };
|
||||||
highlight_last = "IronLastSent";
|
highlight_last = "IronLastSent";
|
||||||
ignore_blank_lines = true;
|
ignore_blank_lines = true;
|
||||||
should_map_plug = false;
|
should_map_plug = false;
|
||||||
bufListed = false;
|
bufListed = false;
|
||||||
keymaps = {
|
keymaps = {
|
||||||
send_motion = null;
|
send_motion.__raw = "nil";
|
||||||
visual_send = null;
|
visual_send.__raw = "nil";
|
||||||
send_file = null;
|
send_file.__raw = "nil";
|
||||||
send_paragraph = null;
|
send_paragraph.__raw = "nil";
|
||||||
send_until_cursor = null;
|
send_until_cursor.__raw = "nil";
|
||||||
send_mark = null;
|
send_mark.__raw = "nil";
|
||||||
mark_motion = null;
|
mark_motion.__raw = "nil";
|
||||||
remove_mark = null;
|
remove_mark.__raw = "nil";
|
||||||
cr = null;
|
cr.__raw = "nil";
|
||||||
interrupt = null;
|
interrupt.__raw = "nil";
|
||||||
exit = null;
|
exit.__raw = "nil";
|
||||||
clear = null;
|
clear.__raw = "nil";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -17,11 +17,11 @@
|
||||||
root_dir.__raw = "require('jdtls.setup').find_root({'.git', 'mvnw', 'gradlew'})";
|
root_dir.__raw = "require('jdtls.setup').find_root({'.git', 'mvnw', 'gradlew'})";
|
||||||
|
|
||||||
settings = {
|
settings = {
|
||||||
java = { };
|
java.__empty = { };
|
||||||
};
|
};
|
||||||
|
|
||||||
init_options = {
|
init_options = {
|
||||||
bundles = { };
|
bundles.__empty = { };
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -10,8 +10,8 @@
|
||||||
settings = {
|
settings = {
|
||||||
style = "hydrogen";
|
style = "hydrogen";
|
||||||
output_extension = "auto";
|
output_extension = "auto";
|
||||||
force_ft = null;
|
force_ft.__raw = "nil";
|
||||||
custom_language_formatting = { };
|
custom_language_formatting.__empty = { };
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
@ -23,7 +23,7 @@
|
||||||
settings = {
|
settings = {
|
||||||
style = "light";
|
style = "light";
|
||||||
output_extension = "auto";
|
output_extension = "auto";
|
||||||
force_ft = null;
|
force_ft.__raw = "nil";
|
||||||
custom_language_formatting.python = {
|
custom_language_formatting.python = {
|
||||||
extension = "md";
|
extension = "md";
|
||||||
style = "markdown";
|
style = "markdown";
|
||||||
|
|
|
||||||
|
|
@ -53,7 +53,7 @@
|
||||||
"--html"
|
"--html"
|
||||||
"-"
|
"-"
|
||||||
];
|
];
|
||||||
pathresolver = [ ];
|
pathresolver.__empty = { };
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
show_icons = "on_request";
|
show_icons = "on_request";
|
||||||
|
|
@ -65,7 +65,7 @@
|
||||||
};
|
};
|
||||||
lualine = "🐼";
|
lualine = "🐼";
|
||||||
};
|
};
|
||||||
additional_curl_options = { };
|
additional_curl_options.__empty = { };
|
||||||
scratchpad_default_contents = [
|
scratchpad_default_contents = [
|
||||||
"@MY_TOKEN_NAME=my_token_value"
|
"@MY_TOKEN_NAME=my_token_value"
|
||||||
""
|
""
|
||||||
|
|
@ -84,7 +84,7 @@
|
||||||
vscode_rest_client_environmentvars = false;
|
vscode_rest_client_environmentvars = false;
|
||||||
disable_script_print_output = false;
|
disable_script_print_output = false;
|
||||||
environment_scope = "b";
|
environment_scope = "b";
|
||||||
certificates = { };
|
certificates.__empty = { };
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -23,7 +23,7 @@
|
||||||
floating_window_use_plenary = 0;
|
floating_window_use_plenary = 0;
|
||||||
use_neovim_remote = 1;
|
use_neovim_remote = 1;
|
||||||
use_custom_config_file_path = 0;
|
use_custom_config_file_path = 0;
|
||||||
config_file_path = [ ];
|
config_file_path.__empty = { };
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -35,14 +35,14 @@
|
||||||
lean = {
|
lean = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
lsp = { };
|
lsp.__empty = { };
|
||||||
ft = {
|
ft = {
|
||||||
default = "lean";
|
default = "lean";
|
||||||
nomodifiable = null;
|
nomodifiable.__raw = "nil";
|
||||||
};
|
};
|
||||||
abbreviations = {
|
abbreviations = {
|
||||||
enable = true;
|
enable = true;
|
||||||
extra = { };
|
extra.__empty = { };
|
||||||
leader = "\\";
|
leader = "\\";
|
||||||
};
|
};
|
||||||
mappings = false;
|
mappings = false;
|
||||||
|
|
|
||||||
|
|
@ -8,11 +8,11 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
||||||
settings = {
|
settings = {
|
||||||
bin = null;
|
bin.__raw = "nil";
|
||||||
is_hledger = null;
|
is_hledger.__raw = "nil";
|
||||||
extra_options = "";
|
extra_options = "";
|
||||||
accounts_cmd = null;
|
accounts_cmd.__raw = "nil";
|
||||||
descriptions_cmd = null;
|
descriptions_cmd.__raw = "nil";
|
||||||
maxwidth = 0;
|
maxwidth = 0;
|
||||||
fillstring = " ";
|
fillstring = " ";
|
||||||
detailed_first = 1;
|
detailed_first = 1;
|
||||||
|
|
@ -28,8 +28,8 @@
|
||||||
date_format = "%Y/%m/%d";
|
date_format = "%Y/%m/%d";
|
||||||
main = "%";
|
main = "%";
|
||||||
winpos = "B";
|
winpos = "B";
|
||||||
qf_register_format = null;
|
qf_register_format.__raw = "nil";
|
||||||
qf_reconcile_format = null;
|
qf_reconcile_format.__raw = "nil";
|
||||||
use_location_list = 0;
|
use_location_list = 0;
|
||||||
qf_vertical = 0;
|
qf_vertical = 0;
|
||||||
qf_size = 10;
|
qf_size = 10;
|
||||||
|
|
|
||||||
|
|
@ -38,7 +38,7 @@
|
||||||
non_standalone = false;
|
non_standalone = false;
|
||||||
};
|
};
|
||||||
logging = true;
|
logging = true;
|
||||||
injector = { };
|
injector.__empty = { };
|
||||||
cache = {
|
cache = {
|
||||||
update_interval = 60 * 60 * 24 * 7;
|
update_interval = 60 * 60 * 24 * 7;
|
||||||
};
|
};
|
||||||
|
|
@ -67,7 +67,7 @@
|
||||||
show_stats = true;
|
show_stats = true;
|
||||||
};
|
};
|
||||||
picker = {
|
picker = {
|
||||||
provider = null;
|
provider.__raw = "nil";
|
||||||
};
|
};
|
||||||
hooks = {
|
hooks = {
|
||||||
"enter" = { };
|
"enter" = { };
|
||||||
|
|
@ -82,7 +82,7 @@
|
||||||
focus_testcases = "H";
|
focus_testcases = "H";
|
||||||
focus_result = "L";
|
focus_result = "L";
|
||||||
};
|
};
|
||||||
theme = { };
|
theme.__empty = { };
|
||||||
image_support = false;
|
image_support = false;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -43,8 +43,7 @@
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
limits = {
|
limits = {
|
||||||
exclude = {
|
exclude.__empty = { };
|
||||||
};
|
|
||||||
exclude_gitignored = true;
|
exclude_gitignored = true;
|
||||||
max_lines = 1000;
|
max_lines = 1000;
|
||||||
max_lenses = 70;
|
max_lenses = 70;
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,7 @@
|
||||||
|
|
||||||
settings = {
|
settings = {
|
||||||
colorscheme = "default";
|
colorscheme = "default";
|
||||||
component_function = { };
|
component_function.__raw = "nil";
|
||||||
component = {
|
component = {
|
||||||
mode = ''%{lightline#mode()}'';
|
mode = ''%{lightline#mode()}'';
|
||||||
absolutepath = "%F";
|
absolutepath = "%F";
|
||||||
|
|
@ -134,7 +134,7 @@
|
||||||
]
|
]
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
inactive = null;
|
inactive.__raw = "nil";
|
||||||
mode_map = {
|
mode_map = {
|
||||||
"n" = "N";
|
"n" = "N";
|
||||||
"i" = "I";
|
"i" = "I";
|
||||||
|
|
|
||||||
|
|
@ -27,11 +27,11 @@
|
||||||
pitches_language = "default";
|
pitches_language = "default";
|
||||||
hyphenation_language = "en_DEFAULT";
|
hyphenation_language = "en_DEFAULT";
|
||||||
output = "pdf";
|
output = "pdf";
|
||||||
backend = null;
|
backend.__raw = "nil";
|
||||||
main_file = "main.ly";
|
main_file = "main.ly";
|
||||||
main_folder = "%:p:h";
|
main_folder = "%:p:h";
|
||||||
include_dir = null;
|
include_dir.__raw = "nil";
|
||||||
pdf_viewer = null;
|
pdf_viewer.__raw = "nil";
|
||||||
errors = {
|
errors = {
|
||||||
diagnostics = true;
|
diagnostics = true;
|
||||||
quickfix = "external";
|
quickfix = "external";
|
||||||
|
|
@ -49,13 +49,13 @@
|
||||||
lilypond_syntax = "<F3>";
|
lilypond_syntax = "<F3>";
|
||||||
};
|
};
|
||||||
options = {
|
options = {
|
||||||
lilypond_book_flags = null;
|
lilypond_book_flags.__raw = "nil";
|
||||||
clean_logs = false;
|
clean_logs = false;
|
||||||
main_file = "main.tex";
|
main_file = "main.tex";
|
||||||
main_folder = "%:p:h";
|
main_folder = "%:p:h";
|
||||||
include_dir = null;
|
include_dir.__raw = "nil";
|
||||||
lilypond_syntax_au = "BufEnter";
|
lilypond_syntax_au = "BufEnter";
|
||||||
pdf_viewer = null;
|
pdf_viewer.__raw = "nil";
|
||||||
errors = {
|
errors = {
|
||||||
diagnostics = true;
|
diagnostics = true;
|
||||||
quickfix = "external";
|
quickfix = "external";
|
||||||
|
|
@ -82,7 +82,7 @@
|
||||||
main_file = "main.texi";
|
main_file = "main.texi";
|
||||||
main_folder = "%:p:h";
|
main_folder = "%:p:h";
|
||||||
lilypond_syntax_au = "BufEnter";
|
lilypond_syntax_au = "BufEnter";
|
||||||
pdf_viewer = null;
|
pdf_viewer.__raw = "nil";
|
||||||
errors = {
|
errors = {
|
||||||
diagnostics = true;
|
diagnostics = true;
|
||||||
quickfix = "external";
|
quickfix = "external";
|
||||||
|
|
@ -119,8 +119,8 @@
|
||||||
border_style = "single";
|
border_style = "single";
|
||||||
winhighlight = "Normal:Normal,FloatBorder:Normal,FloatTitle:Normal";
|
winhighlight = "Normal:Normal,FloatBorder:Normal,FloatTitle:Normal";
|
||||||
midi_synth = "fluidsynth";
|
midi_synth = "fluidsynth";
|
||||||
fluidsynth_flags = null;
|
fluidsynth_flags.__raw = "nil";
|
||||||
timidity_flags = null;
|
timidity_flags.__raw = "nil";
|
||||||
audio_format = "mp3";
|
audio_format = "mp3";
|
||||||
mpv_flags = [
|
mpv_flags = [
|
||||||
"--msg-level=cplayer=no,ffmpeg=no,alsa=no"
|
"--msg-level=cplayer=no,ffmpeg=no,alsa=no"
|
||||||
|
|
|
||||||
|
|
@ -9,14 +9,14 @@
|
||||||
|
|
||||||
settings = {
|
settings = {
|
||||||
show_hidden_files = false;
|
show_hidden_files = false;
|
||||||
ignore = [ ];
|
ignore.__empty = { };
|
||||||
devicons = {
|
devicons = {
|
||||||
enable = false;
|
enable = false;
|
||||||
highlight_dirname = false;
|
highlight_dirname = false;
|
||||||
};
|
};
|
||||||
hide_cursor = false;
|
hide_cursor = false;
|
||||||
on_init.__raw = "function() end";
|
on_init.__raw = "function() end";
|
||||||
mappings = { };
|
mappings.__empty = { };
|
||||||
float = {
|
float = {
|
||||||
winblend = 0;
|
winblend = 0;
|
||||||
curdir_window = {
|
curdir_window = {
|
||||||
|
|
@ -24,7 +24,7 @@
|
||||||
highlight_dirname = false;
|
highlight_dirname = false;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
get_filters = null;
|
get_filters.__raw = "nil";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -19,10 +19,10 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
||||||
settings = {
|
settings = {
|
||||||
api_token = null;
|
api_token.__raw = "nil";
|
||||||
model = "bigcode/starcoder2-15b";
|
model = "bigcode/starcoder2-15b";
|
||||||
backend = "huggingface";
|
backend = "huggingface";
|
||||||
url = null;
|
url.__raw = "nil";
|
||||||
tokens_to_clear = [ "<|endoftext|>" ];
|
tokens_to_clear = [ "<|endoftext|>" ];
|
||||||
request_body = {
|
request_body = {
|
||||||
parameters = {
|
parameters = {
|
||||||
|
|
@ -42,11 +42,11 @@
|
||||||
dismiss_keymap = "<S-Tab>";
|
dismiss_keymap = "<S-Tab>";
|
||||||
tls_skip_verify_insecure = false;
|
tls_skip_verify_insecure = false;
|
||||||
lsp = {
|
lsp = {
|
||||||
host = null;
|
host.__raw = "nil";
|
||||||
port = null;
|
port.__raw = "nil";
|
||||||
cmd_env = null;
|
cmd_env.__raw = "nil";
|
||||||
};
|
};
|
||||||
tokenizer = null;
|
tokenizer.__raw = "nil";
|
||||||
context_window = 1024;
|
context_window = 1024;
|
||||||
enable_suggestions_on_startup = true;
|
enable_suggestions_on_startup = true;
|
||||||
enable_suggestions_on_files = "*";
|
enable_suggestions_on_files = "*";
|
||||||
|
|
|
||||||
|
|
@ -63,19 +63,19 @@
|
||||||
hi_parameter = "LspSignatureActiveParameter";
|
hi_parameter = "LspSignatureActiveParameter";
|
||||||
handler_opts.border = "rounded";
|
handler_opts.border = "rounded";
|
||||||
always_trigger = false;
|
always_trigger = false;
|
||||||
auto_close_after = "nil";
|
auto_close_after.__raw = "nil";
|
||||||
extra_trigger_chars = [ ];
|
extra_trigger_chars.__empty = { };
|
||||||
zindex = 200;
|
zindex = 200;
|
||||||
padding = "";
|
padding = "";
|
||||||
transparency = "nil";
|
transparency.__raw = "nil";
|
||||||
shadow_blend = 36;
|
shadow_blend = 36;
|
||||||
shadow_guibg = "Green";
|
shadow_guibg = "Green";
|
||||||
time_interval = 200;
|
time_interval = 200;
|
||||||
toggle_key = null;
|
toggle_key.__raw = "nil";
|
||||||
toggle_flip_floatwin_setting = false;
|
toggle_flip_floatwin_setting = false;
|
||||||
select_signature_key = null;
|
select_signature_key.__raw = "nil";
|
||||||
move_cursor_key = null;
|
move_cursor_key.__raw = "nil";
|
||||||
keymaps = [ ];
|
keymaps.__empty = { };
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -13,7 +13,7 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
||||||
settings = {
|
settings = {
|
||||||
kind_labels = { };
|
kind_labels.__empty = { };
|
||||||
select_symbol = "";
|
select_symbol = "";
|
||||||
current_function = true;
|
current_function = true;
|
||||||
show_filename = true;
|
show_filename = true;
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,6 @@
|
||||||
{
|
{
|
||||||
empty = {
|
empty = {
|
||||||
plugins.lspkind = {
|
plugins.lspkind.enable = true;
|
||||||
enable = true;
|
|
||||||
cmp.enable = false;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
example = {
|
example = {
|
||||||
|
|
@ -23,11 +20,7 @@
|
||||||
settings = {
|
settings = {
|
||||||
mode = "symbol_text";
|
mode = "symbol_text";
|
||||||
preset = "codicons";
|
preset = "codicons";
|
||||||
symbol_map = null;
|
symbol_map.__raw = "nil";
|
||||||
};
|
|
||||||
cmp = {
|
|
||||||
enable = false;
|
|
||||||
after = null;
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@
|
||||||
"━"
|
"━"
|
||||||
"┏"
|
"┏"
|
||||||
];
|
];
|
||||||
kind = { };
|
kind.__empty = { };
|
||||||
imp_sign = " ";
|
imp_sign = " ";
|
||||||
};
|
};
|
||||||
hover = {
|
hover = {
|
||||||
|
|
@ -87,7 +87,7 @@
|
||||||
default = "ref+imp";
|
default = "ref+imp";
|
||||||
layout = "float";
|
layout = "float";
|
||||||
silent = false;
|
silent = false;
|
||||||
filter = { };
|
filter.__empty = { };
|
||||||
keys = {
|
keys = {
|
||||||
shuttle = "[w";
|
shuttle = "[w";
|
||||||
toggle_or_open = "o";
|
toggle_or_open = "o";
|
||||||
|
|
|
||||||
|
|
@ -18,18 +18,18 @@
|
||||||
echo_preview_url = 1;
|
echo_preview_url = 1;
|
||||||
browser_func = "";
|
browser_func = "";
|
||||||
preview_options = {
|
preview_options = {
|
||||||
mkit = [ ];
|
mkit.__empty = { };
|
||||||
katex = [ ];
|
katex.__empty = { };
|
||||||
uml = [ ];
|
uml.__empty = { };
|
||||||
maid = [ ];
|
maid.__empty = { };
|
||||||
disable_sync_scroll = 0;
|
disable_sync_scroll = 0;
|
||||||
sync_scroll_type = "middle";
|
sync_scroll_type = "middle";
|
||||||
hide_yaml_meta = 1;
|
hide_yaml_meta = 1;
|
||||||
sequence_diagrams = [ ];
|
sequence_diagrams.__empty = { };
|
||||||
flowchart_diagrams = [ ];
|
flowchart_diagrams.__empty = { };
|
||||||
content_editable = 0;
|
content_editable = 0;
|
||||||
disable_filename = 0;
|
disable_filename = 0;
|
||||||
toc = [ ];
|
toc.__empty = { };
|
||||||
};
|
};
|
||||||
markdown_css = "/Users/username/markdown.css";
|
markdown_css = "/Users/username/markdown.css";
|
||||||
highlight_css.__raw = "vim.fn.expand('~/highlight.css')";
|
highlight_css.__raw = "vim.fn.expand('~/highlight.css')";
|
||||||
|
|
|
||||||
|
|
@ -10,18 +10,18 @@
|
||||||
settings = {
|
settings = {
|
||||||
preview = {
|
preview = {
|
||||||
enable = true;
|
enable = true;
|
||||||
buf_ignore = [ ];
|
buf_ignore.__empty = { };
|
||||||
icon_provider = "internal";
|
icon_provider = "internal";
|
||||||
filetypes = [ ];
|
filetypes.__empty = { };
|
||||||
hybrid_modes = [ ];
|
hybrid_modes.__empty = { };
|
||||||
ignore_previews = [ ];
|
ignore_previews.__empty = { };
|
||||||
max_buf_lines = 1000;
|
max_buf_lines = 1000;
|
||||||
modes = [ ];
|
modes.__empty = { };
|
||||||
render_distance = [
|
render_distance = [
|
||||||
200
|
200
|
||||||
200
|
200
|
||||||
];
|
];
|
||||||
splitview_winopts = { };
|
splitview_winopts.__empty = { };
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -15,22 +15,22 @@
|
||||||
enable_auto_complete = true;
|
enable_auto_complete = true;
|
||||||
};
|
};
|
||||||
lsp = {
|
lsp = {
|
||||||
enabled_ft = [ ];
|
enabled_ft.__empty = { };
|
||||||
disabled_ft = [ ];
|
disabled_ft.__empty = { };
|
||||||
enabled_auto_trigger_ft = [ ];
|
enabled_auto_trigger_ft.__empty = { };
|
||||||
disabled_auto_trigger_ft = [ ];
|
disabled_auto_trigger_ft.__empty = { };
|
||||||
warn_on_blink_or_cmp = true;
|
warn_on_blink_or_cmp = true;
|
||||||
};
|
};
|
||||||
virtualtext = {
|
virtualtext = {
|
||||||
auto_trigger_ft = [ ];
|
auto_trigger_ft.__empty = { };
|
||||||
auto_trigger_ignore_ft = [ ];
|
auto_trigger_ignore_ft.__empty = { };
|
||||||
keymap = {
|
keymap = {
|
||||||
accept = null;
|
accept.__raw = "nil";
|
||||||
accept_line = null;
|
accept_line.__raw = "nil";
|
||||||
accept_n_lines = null;
|
accept_n_lines.__raw = "nil";
|
||||||
next = null;
|
next.__raw = "nil";
|
||||||
prev = null;
|
prev.__raw = "nil";
|
||||||
dismiss = null;
|
dismiss.__raw = "nil";
|
||||||
};
|
};
|
||||||
show_on_completion_menu = false;
|
show_on_completion_menu = false;
|
||||||
};
|
};
|
||||||
|
|
@ -44,8 +44,8 @@
|
||||||
add_single_line_entry = true;
|
add_single_line_entry = true;
|
||||||
n_completions = 3;
|
n_completions = 3;
|
||||||
after_cursor_filter_length = 15;
|
after_cursor_filter_length = 15;
|
||||||
proxy = null;
|
proxy.__raw = "nil";
|
||||||
provider_options = { };
|
provider_options.__empty = { };
|
||||||
default_system = {
|
default_system = {
|
||||||
template = "...";
|
template = "...";
|
||||||
prompt = "...";
|
prompt = "...";
|
||||||
|
|
@ -66,7 +66,7 @@
|
||||||
default_chat_input = [ "..." ];
|
default_chat_input = [ "..." ];
|
||||||
default_few_shots_prefix_first = [ "..." ];
|
default_few_shots_prefix_first = [ "..." ];
|
||||||
default_chat_input_prefix_first = [ "..." ];
|
default_chat_input_prefix_first = [ "..." ];
|
||||||
presets = [ ];
|
presets.__empty = { };
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -36,7 +36,7 @@
|
||||||
};
|
};
|
||||||
wrap = false;
|
wrap = false;
|
||||||
bib = {
|
bib = {
|
||||||
default_path = null;
|
default_path.__raw = "nil";
|
||||||
find_in_root = true;
|
find_in_root = true;
|
||||||
};
|
};
|
||||||
silent = false;
|
silent = false;
|
||||||
|
|
@ -44,7 +44,7 @@
|
||||||
style = "markdown";
|
style = "markdown";
|
||||||
conceal = false;
|
conceal = false;
|
||||||
context = 0;
|
context = 0;
|
||||||
implicit_extension = null;
|
implicit_extension.__raw = "nil";
|
||||||
transform_explicit = false;
|
transform_explicit = false;
|
||||||
transform_implicit = ''
|
transform_implicit = ''
|
||||||
function(text)
|
function(text)
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,7 @@
|
||||||
integration = {
|
integration = {
|
||||||
lualine = {
|
lualine = {
|
||||||
enabled = true;
|
enabled = true;
|
||||||
mode_section = null;
|
mode_section.__raw = "nil";
|
||||||
highlight = "bg";
|
highlight = "bg";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -13,11 +13,11 @@
|
||||||
auto_open_html_in_browser = false;
|
auto_open_html_in_browser = false;
|
||||||
auto_open_output = true;
|
auto_open_output = true;
|
||||||
cover_empty_lines = false;
|
cover_empty_lines = false;
|
||||||
cover_lines_starting_with = [ ];
|
cover_lines_starting_with.__empty = { };
|
||||||
copy_output = false;
|
copy_output = false;
|
||||||
enter_output_behavior = "open_then_enter";
|
enter_output_behavior = "open_then_enter";
|
||||||
image_provider = "none";
|
image_provider = "none";
|
||||||
open_cmd = null;
|
open_cmd.__raw = "nil";
|
||||||
output_crop_border = true;
|
output_crop_border = true;
|
||||||
output_show_more = false;
|
output_show_more = false;
|
||||||
output_virt_lines = false;
|
output_virt_lines = false;
|
||||||
|
|
|
||||||
|
|
@ -33,7 +33,7 @@
|
||||||
insert = true;
|
insert = true;
|
||||||
extend = true;
|
extend = true;
|
||||||
config = {
|
config = {
|
||||||
column_count = null;
|
column_count.__raw = "nil";
|
||||||
max_hint_length = 25;
|
max_hint_length = 25;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
@ -82,15 +82,15 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
insert_keys = null;
|
insert_keys.__raw = "nil";
|
||||||
extend_keys = null;
|
extend_keys.__raw = "nil";
|
||||||
hint_config = {
|
hint_config = {
|
||||||
type = "window";
|
type = "window";
|
||||||
position = "bottom";
|
position = "bottom";
|
||||||
offset = 0;
|
offset = 0;
|
||||||
border = "none";
|
border = "none";
|
||||||
show_name = true;
|
show_name = true;
|
||||||
funcs = null;
|
funcs.__raw = "nil";
|
||||||
};
|
};
|
||||||
generate_hints = {
|
generate_hints = {
|
||||||
normal = false;
|
normal = false;
|
||||||
|
|
|
||||||
|
|
@ -65,7 +65,7 @@
|
||||||
popup_border_style = "NC";
|
popup_border_style = "NC";
|
||||||
resize_timer_interval = 500;
|
resize_timer_interval = 500;
|
||||||
sort_case_insensitive = false;
|
sort_case_insensitive = false;
|
||||||
sort_function = "nil";
|
sort_function.__raw = "nil";
|
||||||
use_popups_for_input = true;
|
use_popups_for_input = true;
|
||||||
use_default_mappings = true;
|
use_default_mappings = true;
|
||||||
source_selector = {
|
source_selector = {
|
||||||
|
|
@ -93,14 +93,14 @@
|
||||||
content_layout = "start";
|
content_layout = "start";
|
||||||
tabs_layout = "equal";
|
tabs_layout = "equal";
|
||||||
truncation_character = "…";
|
truncation_character = "…";
|
||||||
tabs_min_width = null;
|
tabs_min_width.__raw = "nil";
|
||||||
tabs_max_width = null;
|
tabs_max_width.__raw = "nil";
|
||||||
padding = 0;
|
padding = 0;
|
||||||
separator = {
|
separator = {
|
||||||
left = "▏";
|
left = "▏";
|
||||||
right = "▕";
|
right = "▕";
|
||||||
};
|
};
|
||||||
separator_active = null;
|
separator_active.__raw = "nil";
|
||||||
show_separator_on_edge = false;
|
show_separator_on_edge = false;
|
||||||
highlight_tab = "NeoTreeTabInactive";
|
highlight_tab = "NeoTreeTabInactive";
|
||||||
highlight_tab_active = "NeoTreeTabActive";
|
highlight_tab_active = "NeoTreeTabActive";
|
||||||
|
|
@ -154,7 +154,7 @@
|
||||||
indent_marker = "│";
|
indent_marker = "│";
|
||||||
last_indent_marker = "└";
|
last_indent_marker = "└";
|
||||||
highlight = "NeoTreeIndentMarker";
|
highlight = "NeoTreeIndentMarker";
|
||||||
with_expanders = null;
|
with_expanders.__raw = "nil";
|
||||||
expander_collapsed = "";
|
expander_collapsed = "";
|
||||||
expander_expanded = "";
|
expander_expanded = "";
|
||||||
expander_highlight = "NeoTreeExpander";
|
expander_highlight = "NeoTreeExpander";
|
||||||
|
|
@ -276,7 +276,7 @@
|
||||||
"bufnr"
|
"bufnr"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
nesting_rules = { };
|
nesting_rules.__empty = { };
|
||||||
window = {
|
window = {
|
||||||
position = "left";
|
position = "left";
|
||||||
width = 40;
|
width = 40;
|
||||||
|
|
@ -380,10 +380,10 @@
|
||||||
".DS_Store"
|
".DS_Store"
|
||||||
"thumbs.db"
|
"thumbs.db"
|
||||||
];
|
];
|
||||||
hide_by_pattern = [ ];
|
hide_by_pattern.__empty = { };
|
||||||
always_show = [ ];
|
always_show.__empty = { };
|
||||||
never_show = [ ];
|
never_show.__empty = { };
|
||||||
never_show_by_pattern = [ ];
|
never_show_by_pattern.__empty = { };
|
||||||
};
|
};
|
||||||
find_by_full_path_words = false;
|
find_by_full_path_words = false;
|
||||||
find_command = "fd";
|
find_command = "fd";
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,7 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
||||||
settings = {
|
settings = {
|
||||||
filter = null;
|
filter.__raw = "nil";
|
||||||
preview = true;
|
preview = true;
|
||||||
default_register = "\"";
|
default_register = "\"";
|
||||||
content_spec_column = false;
|
content_spec_column = false;
|
||||||
|
|
@ -30,20 +30,20 @@
|
||||||
select = "<cr>";
|
select = "<cr>";
|
||||||
paste = "<c-l>";
|
paste = "<c-l>";
|
||||||
paste_behind = "<c-h>";
|
paste_behind = "<c-h>";
|
||||||
custom = { };
|
custom.__empty = { };
|
||||||
};
|
};
|
||||||
n = {
|
n = {
|
||||||
select = "<cr>";
|
select = "<cr>";
|
||||||
paste = "p";
|
paste = "p";
|
||||||
paste_behind = "P";
|
paste_behind = "P";
|
||||||
custom = { };
|
custom.__empty = { };
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
fzf = {
|
fzf = {
|
||||||
select = "default";
|
select = "default";
|
||||||
paste = "ctrl-l";
|
paste = "ctrl-l";
|
||||||
paste_behind = "ctrl-h";
|
paste_behind = "ctrl-h";
|
||||||
custom = { };
|
custom.__empty = { };
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
@ -60,9 +60,9 @@
|
||||||
length_limit = 1048576;
|
length_limit = 1048576;
|
||||||
continuous_sync = false;
|
continuous_sync = false;
|
||||||
db_path.__raw = "vim.fn.stdpath('data') .. '/databases/neoclip.sqlite3'";
|
db_path.__raw = "vim.fn.stdpath('data') .. '/databases/neoclip.sqlite3'";
|
||||||
filter = null;
|
filter.__raw = "nil";
|
||||||
preview = true;
|
preview = true;
|
||||||
prompt = null;
|
prompt.__raw = "nil";
|
||||||
default_register = "\"";
|
default_register = "\"";
|
||||||
default_register_macros = "q";
|
default_register_macros = "q";
|
||||||
enable_macro_history = true;
|
enable_macro_history = true;
|
||||||
|
|
@ -93,7 +93,7 @@
|
||||||
replay = "<c-q>";
|
replay = "<c-q>";
|
||||||
delete = "<c-d>";
|
delete = "<c-d>";
|
||||||
edit = "<c-e>";
|
edit = "<c-e>";
|
||||||
custom = { };
|
custom.__empty = { };
|
||||||
};
|
};
|
||||||
n = {
|
n = {
|
||||||
select = "<cr>";
|
select = "<cr>";
|
||||||
|
|
@ -102,14 +102,14 @@
|
||||||
replay = "q";
|
replay = "q";
|
||||||
delete = "d";
|
delete = "d";
|
||||||
edit = "e";
|
edit = "e";
|
||||||
custom = { };
|
custom.__empty = { };
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
fzf = {
|
fzf = {
|
||||||
select = "default";
|
select = "default";
|
||||||
paste = "ctrl-p";
|
paste = "ctrl-p";
|
||||||
paste_behind = "ctrl-k";
|
paste_behind = "ctrl-k";
|
||||||
custom = { };
|
custom.__empty = { };
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -14,13 +14,13 @@
|
||||||
settings = {
|
settings = {
|
||||||
# General options.
|
# General options.
|
||||||
logo = "auto";
|
logo = "auto";
|
||||||
logo_tooltip = null;
|
logo_tooltip.__raw = "nil";
|
||||||
main_image = "language";
|
main_image = "language";
|
||||||
client_id = "1157438221865717891";
|
client_id = "1157438221865717891";
|
||||||
log_level = null;
|
log_level.__raw = "nil";
|
||||||
debounce_timeout = 10;
|
debounce_timeout = 10;
|
||||||
blacklist = [ ];
|
blacklist.__empty = { };
|
||||||
file_assets = null;
|
file_assets.__raw = "nil";
|
||||||
show_time = true;
|
show_time = true;
|
||||||
global_timer = false;
|
global_timer = false;
|
||||||
|
|
||||||
|
|
@ -50,11 +50,11 @@
|
||||||
logo_tooltip = "Nixvim";
|
logo_tooltip = "Nixvim";
|
||||||
main_image = "language";
|
main_image = "language";
|
||||||
client_id = "1157438221865717891";
|
client_id = "1157438221865717891";
|
||||||
log_level = null;
|
log_level.__raw = "nil";
|
||||||
debounce_timeout = 10;
|
debounce_timeout = 10;
|
||||||
enable_line_number = false;
|
enable_line_number = false;
|
||||||
blacklist = [ ];
|
blacklist.__empty = { };
|
||||||
file_assets = null;
|
file_assets.__raw = "nil";
|
||||||
show_time = true;
|
show_time = true;
|
||||||
global_timer = false;
|
global_timer = false;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -19,8 +19,8 @@
|
||||||
disable_signs = false;
|
disable_signs = false;
|
||||||
prompt_force_push = true;
|
prompt_force_push = true;
|
||||||
graph_style = "ascii";
|
graph_style = "ascii";
|
||||||
commit_date_format = null;
|
commit_date_format.__raw = "nil";
|
||||||
log_date_format = null;
|
log_date_format.__raw = "nil";
|
||||||
process_spinner = false;
|
process_spinner = false;
|
||||||
filewatcher.enabled = true;
|
filewatcher.enabled = true;
|
||||||
telescope_sorter.__raw = ''
|
telescope_sorter.__raw = ''
|
||||||
|
|
@ -50,7 +50,7 @@
|
||||||
tree = "";
|
tree = "";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
highlight = { };
|
highlight.__empty = { };
|
||||||
disable_insert_on_commit = "auto";
|
disable_insert_on_commit = "auto";
|
||||||
use_per_project_settings = true;
|
use_per_project_settings = true;
|
||||||
remember_settings = true;
|
remember_settings = true;
|
||||||
|
|
@ -132,11 +132,11 @@
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
integrations = {
|
integrations = {
|
||||||
telescope = null;
|
telescope.__raw = "nil";
|
||||||
diffview = null;
|
diffview.__raw = "nil";
|
||||||
fzf_lua = null;
|
fzf_lua.__raw = "nil";
|
||||||
mini_pick = null;
|
mini_pick.__raw = "nil";
|
||||||
snacks = null;
|
snacks.__raw = "nil";
|
||||||
};
|
};
|
||||||
sections = {
|
sections = {
|
||||||
sequencer = {
|
sequencer = {
|
||||||
|
|
@ -188,7 +188,7 @@
|
||||||
hidden = false;
|
hidden = false;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
ignored_settings = [ ];
|
ignored_settings.__empty = { };
|
||||||
mappings = {
|
mappings = {
|
||||||
commit_editor = {
|
commit_editor = {
|
||||||
q = "Close";
|
q = "Close";
|
||||||
|
|
|
||||||
|
|
@ -15,9 +15,9 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
||||||
settings = {
|
settings = {
|
||||||
hook = null;
|
hook.__raw = "nil";
|
||||||
lazy_loading = false;
|
lazy_loading = false;
|
||||||
load = { };
|
load.__empty = { };
|
||||||
logger = {
|
logger = {
|
||||||
plugin = "neorg";
|
plugin = "neorg";
|
||||||
use_console = true;
|
use_console = true;
|
||||||
|
|
|
||||||
|
|
@ -60,9 +60,9 @@
|
||||||
step_eof = true;
|
step_eof = true;
|
||||||
respect_scrolloff = false;
|
respect_scrolloff = false;
|
||||||
cursor_scrolls_alone = true;
|
cursor_scrolls_alone = true;
|
||||||
easing_function = null;
|
easing_function.__raw = "nil";
|
||||||
pre_hook = null;
|
pre_hook.__raw = "nil";
|
||||||
post_hook = null;
|
post_hook.__raw = "nil";
|
||||||
performance_mode = false;
|
performance_mode = false;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,7 @@
|
||||||
settings = {
|
settings = {
|
||||||
command = "flutter";
|
command = "flutter";
|
||||||
use_lsp = true;
|
use_lsp = true;
|
||||||
custom_test_method_names = [ ];
|
custom_test_method_names.__empty = { };
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue