mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-10 09:14:31 +02:00
plugins/utils: move to by-name
This commit is contained in:
parent
faff32b9f1
commit
52f125679f
195 changed files with 2 additions and 102 deletions
|
@ -1,64 +0,0 @@
|
|||
{
|
||||
empty = {
|
||||
plugins.nvim-autopairs.enable = true;
|
||||
};
|
||||
|
||||
defaults = {
|
||||
plugins.nvim-autopairs = {
|
||||
enable = true;
|
||||
|
||||
settings = {
|
||||
disable_filetype = [
|
||||
"TelescopePrompt"
|
||||
"spectre_panel"
|
||||
];
|
||||
disable_in_macro = false;
|
||||
disable_in_visualblock = false;
|
||||
disable_in_replace_mode = true;
|
||||
ignored_next_char = "[=[[%w%%%'%[%\"%.%`%$]]=]";
|
||||
enable_moveright = true;
|
||||
enable_afterquote = true;
|
||||
enable_check_bracket_line = true;
|
||||
enable_bracket_in_quote = true;
|
||||
enable_abbr = false;
|
||||
break_undo = true;
|
||||
check_ts = false;
|
||||
ts_config = {
|
||||
lua = [
|
||||
"string"
|
||||
"source"
|
||||
"string_content"
|
||||
];
|
||||
javascript = [
|
||||
"string"
|
||||
"template_string"
|
||||
];
|
||||
};
|
||||
map_cr = true;
|
||||
map_bs = true;
|
||||
map_c_h = false;
|
||||
map_c_w = false;
|
||||
fast_wrap = {
|
||||
map = "<M-e>";
|
||||
chars = [
|
||||
"{"
|
||||
"["
|
||||
"("
|
||||
"\""
|
||||
"'"
|
||||
];
|
||||
pattern = ''[=[[%'%"%>%]%)%}%,%`]]=]'';
|
||||
end_key = "$";
|
||||
before_key = "h";
|
||||
after_key = "l";
|
||||
cursor_pos_before = true;
|
||||
keys = "qwertyuiopzxcvbnmasdfghjkl";
|
||||
highlight = "Search";
|
||||
highlight_grey = "Comment";
|
||||
manual_position = true;
|
||||
use_virt_lines = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue