This commit is contained in:
biscuit
2025-06-02 13:32:32 -05:00
parent d9fdab315c
commit c794974b20
2 changed files with 2 additions and 30 deletions
+1 -29
View File
@@ -4,36 +4,8 @@
pkgs,
...
}: {
plugins.web-devicons.enable = true;
plugins.telescope = {
enable = true;
extensions = {
fzf-native = {
enable = true;
};
};
settings = {
defaults = {
vimgrep_arguments = ["${pkgs.ripgrep}/bin/rg" "-L" "--color=never" "--no-heading" "--with-filename" "--line-number" "--column" "--smart-case" "--fixed-strings"];
selection_caret = " ";
entry_prefix = " ";
layout_strategy = "flex";
layout_config = {
horizontal = {
prompt_position = "top";
};
};
sorting_strategy = "ascending";
file_ignore_patterns = ["^.git/" "^.mypy_cache/" "^__pycache__/" "^output/" "^data/" "%.ipynb"];
set_env.COLORTERM = "truecolor";
};
pickers = {
colorscheme = {
enable_preview = true;
};
};
};
};
extraPackages = with pkgs; [ripgrep];
}
+1 -1
View File
@@ -21,7 +21,7 @@ in {
programs.neovim.enable = true;
programs.nixvim = {
imports = [
# ./custom/dashboard.nix
./custom/dashboard.nix
./custom/telescope.nix
];
enable = true;