mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-22 03:35:21 +02:00
treewide: Reformat with nixfmt
This commit is contained in:
parent
c6281260dc
commit
62f32bfc71
459 changed files with 28139 additions and 26377 deletions
|
@ -13,14 +13,14 @@
|
|||
openOnSetup = true;
|
||||
openOnSetupFile = true;
|
||||
ignoreBufferOnSetup = true;
|
||||
ignoreFtOnSetup = ["tex"];
|
||||
ignoreFtOnSetup = [ "tex" ];
|
||||
autoClose = true;
|
||||
|
||||
autoReloadOnWrite = true;
|
||||
sortBy = "name";
|
||||
hijackUnnamedBufferWhenOpening = false;
|
||||
hijackCursor = false;
|
||||
rootDirs = [];
|
||||
rootDirs = [ ];
|
||||
preferStartupRoot = false;
|
||||
syncRootWithCwd = false;
|
||||
reloadOnBufenter = false;
|
||||
|
@ -32,11 +32,11 @@
|
|||
updateFocusedFile = {
|
||||
enable = false;
|
||||
updateRoot = false;
|
||||
ignoreList = [];
|
||||
ignoreList = [ ];
|
||||
};
|
||||
systemOpen = {
|
||||
cmd = "";
|
||||
args = [];
|
||||
args = [ ];
|
||||
};
|
||||
diagnostics = {
|
||||
enable = false;
|
||||
|
@ -69,7 +69,7 @@
|
|||
filesystemWatchers = {
|
||||
enable = true;
|
||||
debounceDelay = 50;
|
||||
ignoreDirs = [];
|
||||
ignoreDirs = [ ];
|
||||
};
|
||||
onAttach = "default";
|
||||
selectPrompts = false;
|
||||
|
@ -157,15 +157,20 @@
|
|||
};
|
||||
};
|
||||
};
|
||||
specialFiles = ["Cargo.toml" "Makefile" "README.md" "readme.md"];
|
||||
specialFiles = [
|
||||
"Cargo.toml"
|
||||
"Makefile"
|
||||
"README.md"
|
||||
"readme.md"
|
||||
];
|
||||
symlinkDestination = true;
|
||||
};
|
||||
filters = {
|
||||
dotfiles = false;
|
||||
gitClean = false;
|
||||
noBuffer = false;
|
||||
custom = [];
|
||||
exclude = [];
|
||||
custom = [ ];
|
||||
exclude = [ ];
|
||||
};
|
||||
actions = {
|
||||
changeDir = {
|
||||
|
@ -175,7 +180,7 @@
|
|||
};
|
||||
expandAll = {
|
||||
maxFolderDiscovery = 300;
|
||||
exclude = [];
|
||||
exclude = [ ];
|
||||
};
|
||||
filePopup = {
|
||||
openWinConfig = {
|
||||
|
@ -195,8 +200,19 @@
|
|||
picker = "default";
|
||||
chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890";
|
||||
exclude = {
|
||||
filetype = ["notify" "packer" "qf" "diff" "fugitive" "fugitiveblame"];
|
||||
buftype = ["nofile" "terminal" "help"];
|
||||
filetype = [
|
||||
"notify"
|
||||
"packer"
|
||||
"qf"
|
||||
"diff"
|
||||
"fugitive"
|
||||
"fugitiveblame"
|
||||
];
|
||||
buftype = [
|
||||
"nofile"
|
||||
"terminal"
|
||||
"help"
|
||||
];
|
||||
};
|
||||
};
|
||||
removeFile = {
|
||||
|
@ -212,7 +228,7 @@
|
|||
sync = {
|
||||
open = false;
|
||||
close = false;
|
||||
ignore = [];
|
||||
ignore = [ ];
|
||||
};
|
||||
};
|
||||
notify = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue