24.05: Fixed warnings

This commit is contained in:
Geoffrey Frogeye 2024-06-01 21:32:11 +02:00
parent 71385d9ba9
commit 3479927d32
Signed by: geoffrey
GPG key ID: C72403E7F82E6AD8
9 changed files with 52 additions and 47 deletions

View file

@ -13,7 +13,7 @@
};
programs.nixvim = {
colorschemes.base16.setUpBar = false; # We want the custom theme for lualine, probably
options = {
opts = {
ignorecase = true;
smartcase = true;
gdefault = true;
@ -52,23 +52,27 @@
gS = "search_history";
gC = "commands";
};
defaults = {
vimgrep_arguments = [
"${pkgs.ripgrep}/bin/rg"
"--color=never"
"--no-heading"
"--with-filename"
"--line-number"
"--column"
"--smart-case"
];
settings = {
defaults = {
vimgrep_arguments = [
"${pkgs.ripgrep}/bin/rg"
"--color=never"
"--no-heading"
"--with-filename"
"--line-number"
"--column"
"--smart-case"
];
};
};
extensions.fzf-native = {
enable = true;
caseMode = "smart_case";
fuzzy = true;
overrideFileSorter = true;
overrideGenericSorter = true;
settings = {
case_mode = "smart_case";
fuzzy = true;
override_file_sorter = true;
override_generic_sorter = true;
};
};
};
# TODO Go to any symbol in the current working directory, for when LSP doesn't support it.