1
Fork 0

feat: more tmux configuring

This commit is contained in:
Matei Adriel 2022-05-12 00:11:54 +03:00
parent c879c78d56
commit 400794b28c
21 changed files with 133 additions and 71 deletions

View file

@ -13,7 +13,7 @@
# Proof assistants
./agda.nix
./idris.nix
# ./idris.nix
./lean.nix
];
}

View file

@ -1,6 +1,15 @@
{ pkgs, ... }: {
home-manager.users.adrielus.home.packages = with pkgs; [
idris2
idris2-pkgs.lsp # idris2
];
home-manager.users.adrielus = {
home.packages = with pkgs; [
idris2
idris2-pkgs.lsp # idris2
];
programs.neovim.plugins = with pkgs.vimPlugins;
with pkgs.vimExtraPlugins; with pkgs.myVimPlugins; [
nui-nvim # ui lib required by idris plugin
idris2-nvim # idris2 support
];
};
}