mirror of
https://github.com/thilobillerbeck/dotfiles.git
synced 2024-11-21 23:48:49 +01:00
enhance shell
This commit is contained in:
parent
1871a2d0d2
commit
169c3f11bd
6 changed files with 25 additions and 30 deletions
|
@ -1,6 +1,7 @@
|
|||
{ lib, pkgs, config, ... }:
|
||||
with lib; {
|
||||
imports = [
|
||||
./../programs/atuin.nix
|
||||
./../programs/alacritty.nix
|
||||
./../programs/bat.nix
|
||||
./../programs/beets.nix
|
||||
|
@ -21,6 +22,7 @@ with lib; {
|
|||
./../programs/mpv.nix
|
||||
./../programs/syncthing.nix
|
||||
./../programs/hstr.nix
|
||||
./../programs/thefuck.nix
|
||||
./../../nix.nix
|
||||
./packages.nix
|
||||
];
|
||||
|
|
|
@ -65,7 +65,6 @@ in {
|
|||
inputs.nixpkgs-update.packages.x86_64-linux.nixpkgs-update
|
||||
inputs.dagger.packages.x86_64-linux.dagger
|
||||
unzip
|
||||
gh
|
||||
nil
|
||||
nixd
|
||||
unrar
|
||||
|
|
3
home-manager/programs/atuin.nix
Normal file
3
home-manager/programs/atuin.nix
Normal file
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
programs.atuin = { enable = true; };
|
||||
}
|
|
@ -28,4 +28,7 @@
|
|||
};
|
||||
};
|
||||
programs.git-credential-oauth = { enable = true; };
|
||||
programs.gh.enable = true;
|
||||
programs.gh-dash.enable = true;
|
||||
programs.lazygit.enable = true;
|
||||
}
|
||||
|
|
3
home-manager/programs/thefuck.nix
Normal file
3
home-manager/programs/thefuck.nix
Normal file
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
programs.thefuck = { enable = true; };
|
||||
}
|
|
@ -1,25 +1,6 @@
|
|||
{ pkgs, ... }:
|
||||
let
|
||||
omz-plugins = [
|
||||
"git"
|
||||
"archlinux"
|
||||
"composer"
|
||||
"colored-man-pages"
|
||||
"extract"
|
||||
"gradle"
|
||||
"node"
|
||||
"npm"
|
||||
"rbenv"
|
||||
"sudo"
|
||||
"direnv"
|
||||
"docker"
|
||||
"docker-compose"
|
||||
"golang"
|
||||
"pip"
|
||||
"history"
|
||||
"vagrant"
|
||||
];
|
||||
in {
|
||||
|
||||
{
|
||||
programs.zsh = {
|
||||
enable = true;
|
||||
autosuggestion.enable = true;
|
||||
|
@ -36,18 +17,22 @@ in {
|
|||
undo-git-reset-head = "git reset 'HEAD@{1}'";
|
||||
update-local = "bash $HOME/.dotfiles/install";
|
||||
};
|
||||
zplug = {
|
||||
enable = true;
|
||||
plugins = map (x: {
|
||||
name = "plugins/${x}";
|
||||
tags = [ "from:oh-my-zsh" ];
|
||||
}) omz-plugins;
|
||||
};
|
||||
initExtra = ''
|
||||
eval $(${pkgs.thefuck}/bin/thefuck --alias)
|
||||
[ -d ~/.npm-global ] || mkdir ~/.npm-global
|
||||
${pkgs.nodejs}/bin/npm config set prefix '~/.npm-global'
|
||||
export PATH=~/.npm-global/bin:$PATH
|
||||
'';
|
||||
plugins = [
|
||||
{
|
||||
name = "zsh-nix-shell";
|
||||
file = "nix-shell.plugin.zsh";
|
||||
src = pkgs.fetchFromGitHub {
|
||||
owner = "chisui";
|
||||
repo = "zsh-nix-shell";
|
||||
rev = "v0.8.0";
|
||||
sha256 = "1lzrn0n4fxfcgg65v0qhnj7wnybybqzs4adz7xsrkgmcsr0ii8b7";
|
||||
};
|
||||
}
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue