mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-23 17:28:39 +02: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
|
@ -8,7 +8,7 @@
|
|||
enable = true;
|
||||
|
||||
settings = {
|
||||
open_only_vim_starting = true;
|
||||
open_only_vim_starting = 1;
|
||||
use_singlecolumn = "always";
|
||||
min_window_width = 160;
|
||||
status_window_opencmd = "belowright split";
|
||||
|
|
|
@ -20,9 +20,9 @@
|
|||
"╰"
|
||||
"│"
|
||||
];
|
||||
floating_window_use_plenary = false;
|
||||
use_neovim_remote = true;
|
||||
use_custom_config_file_path = false;
|
||||
floating_window_use_plenary = 0;
|
||||
use_neovim_remote = 1;
|
||||
use_custom_config_file_path = 0;
|
||||
config_file_path = [ ];
|
||||
};
|
||||
};
|
||||
|
|
|
@ -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;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
@ -14,21 +14,21 @@
|
|||
section_x = "foo";
|
||||
section_y = "foo";
|
||||
section_z = "foo";
|
||||
experimental = true;
|
||||
experimental = 1;
|
||||
left_sep = ">";
|
||||
right_sep = "<";
|
||||
detect_modified = true;
|
||||
detect_paste = true;
|
||||
detect_crypt = true;
|
||||
detect_spell = true;
|
||||
detect_spelllang = true;
|
||||
detect_iminsert = false;
|
||||
inactive_collapse = true;
|
||||
inactive_alt_sep = true;
|
||||
detect_modified = 1;
|
||||
detect_paste = 1;
|
||||
detect_crypt = 1;
|
||||
detect_spell = 1;
|
||||
detect_spelllang = 1;
|
||||
detect_iminsert = 0;
|
||||
inactive_collapse = 1;
|
||||
inactive_alt_sep = 1;
|
||||
theme = "dark";
|
||||
theme_patch_func = null;
|
||||
powerline_fonts = false;
|
||||
symbols_ascii = false;
|
||||
powerline_fonts = 0;
|
||||
symbols_ascii = 0;
|
||||
mode_map = {
|
||||
__ = "-";
|
||||
c = "C";
|
||||
|
@ -95,14 +95,14 @@
|
|||
"%{b:vaffle.dir}"
|
||||
];
|
||||
};
|
||||
exclude_preview = false;
|
||||
disable_statusline = false;
|
||||
skip_empty_sections = true;
|
||||
highlighting_cache = false;
|
||||
focuslost_inactive = false;
|
||||
statusline_ontop = false;
|
||||
exclude_preview = 0;
|
||||
disable_statusline = 0;
|
||||
skip_empty_sections = 1;
|
||||
highlighting_cache = 0;
|
||||
focuslost_inactive = 0;
|
||||
statusline_ontop = 0;
|
||||
stl_path_style = "short";
|
||||
section_c_only_filename = true;
|
||||
section_c_only_filename = 1;
|
||||
symbols = {
|
||||
branch = "";
|
||||
colnr = " ℅:";
|
||||
|
|
|
@ -8,9 +8,9 @@
|
|||
enable = true;
|
||||
|
||||
settings = {
|
||||
direnv_auto = false;
|
||||
direnv_auto = 0;
|
||||
direnv_edit_mode = "vsplit";
|
||||
direnv_silent_load = false;
|
||||
direnv_silent_load = 0;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
settings = {
|
||||
width = 80;
|
||||
height = 85;
|
||||
linenr = false;
|
||||
linenr = 0;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
@ -8,9 +8,9 @@
|
|||
enable = true;
|
||||
|
||||
settings = {
|
||||
no_default_key_mappings = true;
|
||||
no_tex_ftplugin = true;
|
||||
no_vim_ftplugin = true;
|
||||
no_default_key_mappings = 1;
|
||||
no_tex_ftplugin = 1;
|
||||
no_vim_ftplugin = 1;
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
@ -8,9 +8,9 @@
|
|||
enable = true;
|
||||
|
||||
settings = {
|
||||
heuristics = true;
|
||||
gitcommit_heuristics = false;
|
||||
no_filetype_indent_on = true;
|
||||
heuristics = 1;
|
||||
gitcommit_heuristics = 0;
|
||||
no_filetype_indent_on = 1;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
@ -13,10 +13,10 @@
|
|||
|
||||
settings = {
|
||||
save_on_switch = 2;
|
||||
disable_when_zoomed = true;
|
||||
preserve_zoom = true;
|
||||
no_wrap = true;
|
||||
no_mappings = true;
|
||||
disable_when_zoomed = 1;
|
||||
preserve_zoom = 1;
|
||||
no_wrap = 1;
|
||||
no_mappings = 1;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
@ -48,7 +48,7 @@
|
|||
}
|
||||
];
|
||||
|
||||
settings.no_mappings = true;
|
||||
settings.no_mappings = 1;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue