nixvim stuff

This commit is contained in:
Charlie Root 2024-05-22 15:32:37 +02:00
commit c4119b1150
4 changed files with 8 additions and 2 deletions

View file

@ -53,6 +53,7 @@ in {
./plug/utils/undotree.nix
./plug/utils/ufo.nix
./plug/utils/whichkey.nix
./plug/utils/lazy.nix
];
options = {
theme = lib.mkOption {

View file

@ -9,7 +9,7 @@ in {
plugins = {
bufferline = {
enable = true;
separatorStyle = "thick"; # “slant”, “padded_slant”, “slope”, “padded_slope”, “thick”, “thin”
separatorStyle = "slant"; # “slant”, “padded_slant”, “slope”, “padded_slope”, “thick”, “thin”
highlights = {
fill = {
fg = colors.base00;

View file

@ -5,7 +5,7 @@
disableMouse = true;
disabledFiletypes = ["Oil"];
hint = true;
maxCount = 4;
maxCount = 2;
maxTime = 1000;
restrictionMode = "hint";
restrictedKeys = {

View file

@ -0,0 +1,5 @@
{
programs.nixvim.plugins.lazy = {
enable = true;
};
}