mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-24 01:38:40 +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,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