This commit is contained in:
2025-08-12 10:13:57 +00:00
parent 3d5d034f86
commit e3353873ed
8 changed files with 115 additions and 49 deletions

View File

@@ -2,6 +2,18 @@
programs.nixvim.plugins.mini = {
enable = true;
modules = {
jump = {};
files = {};
jump2d = {
settings = {
spotter.__raw = "require('mini.jump2d').gen_spotter.pattern('[^%s%p]+')";
labels = "asdfghjkl";
view = {
dim = true;
n_steps_ahead = 2;
};
};
};
basics = {
options = {
basic = true;

View File

@@ -1,30 +0,0 @@
{
programs.nixvim.plugins.oil = {
enable = true;
settings = {
columns = [
"icon"
];
keymaps = {
"<C-r>" = "actions.refresh";
"<leader>qq" = "actions.close";
};
skip_confirm_for_simple_edits = true;
constrain_cursor = "editable";
default_file_explorer = true;
view_options = {
show_hidden = true;
};
win_options = {
concealcursor = "ncv";
conceallevel = 3;
cursorcolumn = false;
foldcolumn = "0";
list = false;
signcolumn = "no";
spell = false;
wrap = false;
};
};
};
}