From 95cb1c393db574328f1df2f1dd49acddd08e9fe5 Mon Sep 17 00:00:00 2001 From: Tine Date: Tue, 14 Jan 2025 11:40:51 +0100 Subject: [PATCH] feat: add atuin --- bat/config | 2 +- nix/core.nix | 19 +++++++++++++++---- 2 files changed, 16 insertions(+), 5 deletions(-) diff --git a/bat/config b/bat/config index db721e2..e6d5f50 100644 --- a/bat/config +++ b/bat/config @@ -1,2 +1,2 @@ --italic-text='always' ---theme=OneHalfDark +--theme=OneHalfLight diff --git a/nix/core.nix b/nix/core.nix index 50dfa71..53f949f 100644 --- a/nix/core.nix +++ b/nix/core.nix @@ -1,4 +1,9 @@ -{ lib, config, pkgs, ... }: +{ + lib, + config, + pkgs, + ... +}: { # This value determines the Home Manager release that your configuration is @@ -40,6 +45,8 @@ nmap grpcurl jwt-cli + just + atuin # Refactoring ast-grep @@ -149,9 +156,7 @@ difftastic.enable = true; lfs.enable = true; - includes = [ - { path = "~/.gitconfig.local"; } - ]; + includes = [ { path = "~/.gitconfig.local"; } ]; extraConfig = { user = { @@ -226,6 +231,12 @@ "gl" = "git log"; "gp" = "git push"; }; + defaultKeymap = "vicmd"; + }; + + programs.atuin = { + enable = true; + enableZshIntegration = true; }; # Let Home Manager install and manage itself.