mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-13 14:02:46 +01:00
plugins: fix "int flag" style options
This commit is contained in:
parent
555035ef79
commit
ec61ca9b08
27 changed files with 168 additions and 168 deletions
|
|
@ -15,25 +15,25 @@
|
|||
descriptions_cmd = null;
|
||||
maxwidth = 0;
|
||||
fillstring = " ";
|
||||
detailed_first = true;
|
||||
fold_blanks = false;
|
||||
detailed_first = 1;
|
||||
fold_blanks = 0;
|
||||
decimal_sep = ".";
|
||||
align_last = false;
|
||||
align_last = 0;
|
||||
align_at = 60;
|
||||
default_commodity = "";
|
||||
align_commodity = false;
|
||||
commodity_before = true;
|
||||
align_commodity = 0;
|
||||
commodity_before = 1;
|
||||
commodity_sep = "";
|
||||
commodity_spell = false;
|
||||
commodity_spell = 0;
|
||||
date_format = "%Y/%m/%d";
|
||||
main = "%";
|
||||
winpos = "B";
|
||||
qf_register_format = null;
|
||||
qf_reconcile_format = null;
|
||||
use_location_list = false;
|
||||
qf_vertical = false;
|
||||
use_location_list = 0;
|
||||
qf_vertical = 0;
|
||||
qf_size = 10;
|
||||
qf_hide_file = true;
|
||||
qf_hide_file = 1;
|
||||
cleared_string = "Cleared: ";
|
||||
pending_string = "Cleared or pending: ";
|
||||
target_string = "Difference from target: ";
|
||||
|
|
|
|||
|
|
@ -8,27 +8,27 @@
|
|||
enable = true;
|
||||
|
||||
settings = {
|
||||
auto_start = true;
|
||||
auto_close = true;
|
||||
refresh_slow = false;
|
||||
command_for_global = false;
|
||||
open_to_the_world = false;
|
||||
auto_start = 1;
|
||||
auto_close = 1;
|
||||
refresh_slow = 0;
|
||||
command_for_global = 0;
|
||||
open_to_the_world = 0;
|
||||
open_ip = "";
|
||||
browser = "firefox";
|
||||
echo_preview_url = true;
|
||||
echo_preview_url = 1;
|
||||
browser_func = "";
|
||||
preview_options = {
|
||||
mkit = [ ];
|
||||
katex = [ ];
|
||||
uml = [ ];
|
||||
maid = [ ];
|
||||
disable_sync_scroll = false;
|
||||
disable_sync_scroll = 0;
|
||||
sync_scroll_type = "middle";
|
||||
hide_yaml_meta = true;
|
||||
hide_yaml_meta = 1;
|
||||
sequence_diagrams = [ ];
|
||||
flowchart_diagrams = [ ];
|
||||
content_editable = false;
|
||||
disable_filename = false;
|
||||
content_editable = 0;
|
||||
disable_filename = 0;
|
||||
toc = [ ];
|
||||
};
|
||||
markdown_css = "/Users/username/markdown.css";
|
||||
|
|
@ -38,8 +38,8 @@
|
|||
images_path = "";
|
||||
filetypes = [ "markdown" ];
|
||||
theme = "dark";
|
||||
combine_preview = false;
|
||||
combine_preview_auto_refresh = true;
|
||||
combine_preview = 0;
|
||||
combine_preview_auto_refresh = 1;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
|||
|
|
@ -10,8 +10,8 @@
|
|||
settings = {
|
||||
cmd = "typst";
|
||||
pdf_viewer = "zathura";
|
||||
conceal_math = false;
|
||||
auto_close_toc = false;
|
||||
conceal_math = 0;
|
||||
auto_close_toc = 0;
|
||||
};
|
||||
|
||||
keymaps = {
|
||||
|
|
|
|||
|
|
@ -10,15 +10,15 @@
|
|||
settings = {
|
||||
target = "screen";
|
||||
vimterminal_cmd = null;
|
||||
no_mappings = false;
|
||||
no_mappings = 0;
|
||||
paste_file = "$HOME/.slime_paste";
|
||||
preserve_curpos = true;
|
||||
preserve_curpos = 1;
|
||||
default_config = {
|
||||
socket_name = "default";
|
||||
target_pane = "{last}";
|
||||
};
|
||||
dont_ask_default = false;
|
||||
bracketed_paste = false;
|
||||
dont_ask_default = 0;
|
||||
bracketed_paste = 0;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@
|
|||
enable = true;
|
||||
|
||||
settings = {
|
||||
fmt_autosave = false;
|
||||
fmt_autosave = 0;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue