added dressing.nvim.

This commit is contained in:
Gabe Venberg 2024-03-21 11:03:33 -05:00
parent 17db4b6f8e
commit 2daf8eb0f9
6 changed files with 17 additions and 11 deletions

View file

@ -35,6 +35,8 @@
home.sessionVariables = {
EDITOR = "nvim";
VISUAL = "nvim";
PIPENV_VENV_IN_PROJECT = 1;
POETRY_VIRTUALENVS_IN_PROJECT = 1;
};
home.sessionPath = [

View file

@ -110,6 +110,8 @@ $env.PATH = ($env.PATH | uniq)
$env.EDITOR = nvim
$env.VISUAL = nvim
$env.PIPENV_VENV_IN_PROJECT = 1
$env.POETRY_VIRTUALENVS_IN_PROJECT = 1
$env.SSH_AUTH_SOCK = $"($env.XDG_RUNTIME_DIR)/ssh-agent"
ls (($nu.default-config-dir | path join ('scripts/**/*.nu')) | into glob) |

View file

@ -15,9 +15,9 @@
};
}
];
extraPlugins = [
pkgs.vimPlugins.outline-nvim
extraPlugins = with pkgs.vimPlugins; [
outline-nvim
];
extraConfigLua=''require("outline").setup({})'';
extraConfigLua = ''require("outline").setup({})'';
};
}

View file

@ -12,8 +12,10 @@
enable = true;
addDefaultMappings = true;
};
extraPlugins = [
pkgs.vimPlugins.vim-numbertoggle
extraPlugins = with pkgs.vimPlugins; [
vim-numbertoggle
dressing-nvim
];
extraConfigLua = ''require("dressing").setup({})'';
};
}

View file

@ -15,9 +15,9 @@
};
}
];
extraPlugins = [
pkgs.vimPlugins.aerial-nvim
extraPlugins = with pkgs.vimPlugins; [
aerial-nvim
];
extraConfigLua=''require("aerial").setup({})'';
extraConfigLua = ''require("aerial").setup({})'';
};
}

View file

@ -12,10 +12,10 @@
};
plugins.treesitter-context.enable = true;
plugins.indent-blankline.enable = true;
extraPlugins = [
pkgs.vimPlugins.treesj
extraPlugins = with pkgs.vimPlugins; [
treesj
];
extraConfigLua=''require("treesj").setup({})'';
extraConfigLua = ''require("treesj").setup({})'';
};
imports = [
./rainbow-delimiters.nix