mirror of
https://github.com/youwen5/neovim-flake.git
synced 2024-11-24 19:03:49 -08:00
Youwen Wu
414e46dd15
* switch to oil.nvim from yazi * use lualine with custom config * optimize settings
80 lines
1.8 KiB
Nix
80 lines
1.8 KiB
Nix
# Getting around REALLY FAST
|
|
{ pkgs, ... }:
|
|
{
|
|
plugins = {
|
|
telescope = {
|
|
enable = true;
|
|
extensions = {
|
|
ui-select = {
|
|
enable = true;
|
|
settings = {
|
|
codeactions = true;
|
|
};
|
|
};
|
|
media-files = {
|
|
enable = true;
|
|
settings = {
|
|
filetypes = [
|
|
"png"
|
|
"webp"
|
|
"jpg"
|
|
"jpeg"
|
|
"mp4"
|
|
"svg"
|
|
"pdf"
|
|
"mov"
|
|
"mkv"
|
|
"avi"
|
|
];
|
|
find_cmd = "rg";
|
|
};
|
|
dependencies = {
|
|
imageMagick.enable = true;
|
|
pdftoppm.enable = true;
|
|
ffmpegthumbnailer.enable = true;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
yazi = {
|
|
enable = true;
|
|
# settings = {
|
|
# open_for_directories = true;
|
|
# };
|
|
};
|
|
oil = {
|
|
enable = true;
|
|
# because combinePlugins.enable = true, the collision of `doc` is
|
|
# unavoidable. this renames them.
|
|
package = pkgs.vimPlugins.oil-nvim.overrideAttrs (oldAttrs: {
|
|
postInstall =
|
|
(oldAttrs.postInstall or "")
|
|
+ ''
|
|
mv $out/doc/recipes.md $out/doc/oil_recipes.md
|
|
'';
|
|
});
|
|
};
|
|
harpoon = {
|
|
enable = true;
|
|
keymaps = {
|
|
addFile = "<Leader>hh";
|
|
cmdToggleQuickMenu = "<Leader>hm";
|
|
gotoTerminal = {
|
|
"1" = "<Leader>ht";
|
|
"2" = "<Leader>2";
|
|
"3" = "<Leader>3";
|
|
"4" = "<Leader>4";
|
|
};
|
|
navFile = {
|
|
"1" = "<Leader>ha";
|
|
"2" = "<Leader>hs";
|
|
"3" = "<Leader>hd";
|
|
"4" = "<Leader>hf";
|
|
};
|
|
navNext = "<Leader>h]";
|
|
navPrev = "<Leader>h[";
|
|
toggleQuickMenu = "<Leader>hk";
|
|
};
|
|
};
|
|
};
|
|
}
|