added more tools, replaced outline.nvim with arial.nvim.
This commit is contained in:
parent
2069707238
commit
273dd88e34
|
@ -16,6 +16,14 @@
|
||||||
sshfs
|
sshfs
|
||||||
just
|
just
|
||||||
espeak
|
espeak
|
||||||
|
fd
|
||||||
|
sd
|
||||||
|
hugo
|
||||||
|
scc
|
||||||
|
tre-command
|
||||||
|
diskonaut
|
||||||
|
hyperfine
|
||||||
|
curl
|
||||||
];
|
];
|
||||||
|
|
||||||
# Home Manager is pretty good at managing dotfiles. The primary way to manage
|
# Home Manager is pretty good at managing dotfiles. The primary way to manage
|
||||||
|
|
|
@ -188,7 +188,7 @@
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
imports = [
|
imports = [
|
||||||
./outline.nix
|
# ./outline.nix
|
||||||
./rust-tools.nix
|
./rust-tools.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -18,5 +18,6 @@
|
||||||
extraPlugins = [
|
extraPlugins = [
|
||||||
pkgs.vimPlugins.outline-nvim
|
pkgs.vimPlugins.outline-nvim
|
||||||
];
|
];
|
||||||
|
extraConfigLua=''require("outline").setup({})'';
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
23
nix/nvim/treesitter/arial.nix
Normal file
23
nix/nvim/treesitter/arial.nix
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
{
|
||||||
|
configs,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
|
programs.nixvim = {
|
||||||
|
keymaps = [
|
||||||
|
{
|
||||||
|
action = ":AerialToggle!<CR>";
|
||||||
|
key = "<leader>o";
|
||||||
|
mode = "n";
|
||||||
|
options = {
|
||||||
|
silent = true;
|
||||||
|
desc = "toggle outline";
|
||||||
|
};
|
||||||
|
}
|
||||||
|
];
|
||||||
|
extraPlugins = [
|
||||||
|
pkgs.vimPlugins.aerial-nvim
|
||||||
|
];
|
||||||
|
extraConfigLua=''require("aerial").setup({})'';
|
||||||
|
};
|
||||||
|
}
|
|
@ -15,8 +15,10 @@
|
||||||
extraPlugins = [
|
extraPlugins = [
|
||||||
pkgs.vimPlugins.treesj
|
pkgs.vimPlugins.treesj
|
||||||
];
|
];
|
||||||
|
extraConfigLua=''require("treesj").setup({})'';
|
||||||
};
|
};
|
||||||
imports = [
|
imports = [
|
||||||
./rainbow-delimiters.nix
|
./rainbow-delimiters.nix
|
||||||
|
./arial.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue