Added session helper (vim-obsession)

This commit is contained in:
Alejandro Angulo 2024-07-16 19:56:17 -07:00
parent d3bafb4485
commit c4c1e57bac
Signed by: alejandro-angulo
GPG key ID: 75579581C74554B6
2 changed files with 14 additions and 0 deletions

View file

@ -7,6 +7,7 @@
./plugins/lsp.nix
./plugins/lualine.nix
./plugins/rhubarb.nix
./plugins/vim-obsession.nix
];
colorschemes.base16 = {

View file

@ -0,0 +1,13 @@
{pkgs, ...}: {
extraPlugins = [
(pkgs.vimUtils.buildVimPlugin {
name = "vim-obsession";
src = pkgs.fetchFromGitHub {
owner = "tpope";
repo = "vim-obsession";
rev = "fe9d3e1a9a50171e7d316a52e1e56d868e4c1fe5";
hash = "sha256-uf4BWCmKU22s5p+pKIM9DIzEFnqMgIOxSxSrhJeRwHQ=";
};
})
];
}