fix(plugins/astrocore): wrongly set options
This commit is contained in:
parent
f71226be0f
commit
208ee4fec2
4 changed files with 66 additions and 74 deletions
|
|
@ -1,25 +1,23 @@
|
|||
# https://github.com/AstroNvim/AstroNvim/blob/v4.7.7/lua/astronvim/plugins/_astrocore.lua#L32-L39
|
||||
{
|
||||
features = {
|
||||
# Enable autopairs at start
|
||||
autopairs = true;
|
||||
# Enable autopairs at start
|
||||
autopairs = true;
|
||||
|
||||
# Enable completion at start
|
||||
cmp = true;
|
||||
# Enable completion at start
|
||||
cmp = true;
|
||||
|
||||
# Enable diagnostics by default
|
||||
diagnostics_mode = 3;
|
||||
# Enable diagnostics by default
|
||||
diagnostics_mode = 3;
|
||||
|
||||
# Highlight URLs by default
|
||||
highlighturl = true;
|
||||
# Highlight URLs by default
|
||||
highlighturl = true;
|
||||
|
||||
# Disable notifications
|
||||
notifications = true;
|
||||
# Disable notifications
|
||||
notifications = true;
|
||||
|
||||
# Set global limits for large files
|
||||
large_buf = {
|
||||
lines = 10000;
|
||||
size = 1024 * 500;
|
||||
};
|
||||
# Set global limits for large files
|
||||
large_buf = {
|
||||
lines = 10000;
|
||||
size = 1024 * 500;
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue