hoo boy, this some magic

This commit is contained in:
Anthony Cicchetti 2023-05-09 22:31:32 -04:00
parent 0e15b1ae5a
commit acb15b5e7c
6 changed files with 335 additions and 22 deletions

View file

@ -60,30 +60,43 @@
#
# if you don't want to manage your shell through Home Manager.
home.sessionVariables = {
# EDITOR = "emacs";
EDITOR = "nvim";
};
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;
programs.zsh = {
enable = false;
};
programs.nix-index-database = {
comma.enable = true;
programs.atuin = {
enable = true;
enableZshIntegration = true;
};
programs.direnv = {
enable = true;
nix-direnv.enable = true;
};
programs.git = {
enable = false;
# TODO
programs.exa = {
enable = true;
git = true;
icons = true;
enableAliases = false;
};
programs.gh = {
enable = false;
# TODO
};
programs.htop = {
enable = true;
};
programs.mcfly = {
enable = false;
keyScheme = "vim";
};
programs.neovim = {
enable = false;
# TODO
@ -91,10 +104,28 @@
# fnl dir
# undodir at ~/.undodir
};
programs.nix-index-database = {
comma.enable = true;
};
programs.nnn = {
enable = true;
};
programs.skim = {
enable = true;
enableZshIntegration = false;
};
programs.zoxide = {
enable = true;
};
programs.zsh = {
enable = false;
};
imports = [
./modules/packages
./modules/files.nix

View file

@ -4,7 +4,7 @@
config,
...
}: {
home.file.".config/zellij/config.kdl".source = ../../../zellij/config.kdl;
home.file.".ideavimrc".source = ../../../ideavim/ideavimrc;
# TODO
# git-sync binary
# ideavimrc

View file

@ -4,33 +4,26 @@
config,
...
}: {
imports = [./git.nix ./starship.nix ./zellij.nix];
home.packages = with pkgs; [
# TODO: https://github.com/ogham/dog
atuin
bandwhich
bat
cargo-workspaces
delta
difftastic
dogdns
erdtree
exa
fd
git
gnutar
gping
htop
internetarchive
jless
just
kondo
mcfly
litecli
neovim
poetry
ripgrep
skim
starship
zellij
zoxide
zsh
yt-dlp
zstd
];
}

View file

@ -0,0 +1,65 @@
{
config,
lib,
pkgs,
...
}: {
programs.git = {
enable = true;
difftastic.enable = true;
userName = "Anthony Cicchetti";
userEmail = "anthony@anthonycicchetti.com";
aliases = {
pushall = "!git remote | xargs -L1 git push --all";
pr = "!f() { git fetch -fu $${2:-$(git remote |grep ^upstream || echo origin)} refs/pull/$1/head:pr/$1 && git checkout pr/$1; }; f";
logp = "log --pretty=format:'%h %ad | %s%d [%an]' --graph --date=short";
};
extraConfig = {
core = {
autocrlf = "input";
fsmonitor = true;
};
checkout = {
workers = 0;
};
fetch = {
prune = true;
};
format = {
pretty = "fuller";
};
log = {
follow = true;
};
push = {
autoSetupRemote = true;
};
pull = {
rebase = true;
};
init = {
defaultBranch = "main";
};
help = {
autoCorrect = "prompt";
};
rebase = {
updateRefs = true;
};
};
includes = [
{path = "~/.gitconfig_local";}
];
};
}

View file

@ -0,0 +1,212 @@
{
config,
lib,
pkgs,
...
}: {
programs.starship = {
enable = true;
settings = {
aws = {
symbol = " ";
};
battery = {
disabled = true;
};
buf = {
symbol = " ";
};
c = {
symbol = " ";
};
character = {
success_symbol = "[](bold green)";
error_symbol = "[](bold red)";
vicmd_symbol = "[ƴ](bold yellow)";
};
command_timeout = 1000;
conda = {
symbol = " ";
};
continuation_prompt = "";
dart = {
symbol = " ";
};
directory = {
read_only = " ";
};
docker_context = {
symbol = " ";
};
elixir = {
symbol = " ";
};
elm = {
symbol = " ";
};
fossil_branch = {
symbol = " ";
};
git_branch = {
symbol = " ";
};
git_metrics = {
disabled = false;
added_style = "bold blue";
};
git_status = {
disabled = true;
ahead = "\${count}";
diverged = "\${ahead_count}\${behind_count}";
behind = "\${count}";
};
golang = {
symbol = " ";
};
guix_shell = {
symbol = " ";
};
haskell = {
symbol = " ";
};
haxe = {
symbol = " ";
};
hg_branch = {
symbol = " ";
};
hostname = {
ssh_symbol = " ";
};
java = {
symbol = " ";
};
jobs = {
symbol = "+";
};
julia = {
symbol = " ";
};
lua = {
symbol = " ";
};
memory_usage = {
symbol = " ";
};
meson = {
symbol = " ";
};
nim = {
symbol = " ";
};
nix_shell = {
symbol = " ";
};
nodejs = {
symbol = " ";
};
os.symbols = {
"Alpaquita" = " ";
"Alpine" = " ";
"Amazon" = " ";
"Android" = " ";
"Arch" = " ";
"Artix" = " ";
"CentOS" = " ";
"Debian" = " ";
"DragonFly" = " ";
"Emscripten" = " ";
"EndeavourOS" = " ";
"Fedora" = " ";
"FreeBSD" = " ";
"Garuda" = " ";
"Gentoo" = " ";
"HardenedBSD" = " ";
"Illumos" = " ";
"Linux" = " ";
"Mabox" = " ";
"Macos" = " ";
"Manjaro" = " ";
"Mariner" = " ";
"MidnightBSD" = " ";
"Mint" = " ";
"NetBSD" = " ";
"NixOS" = " ";
"OpenBSD" = " ";
"openSUSE" = " ";
"OracleLinux" = " ";
"Pop" = " ";
"Raspbian" = " ";
"Redhat" = " ";
"RedHatEnterprise" = " ";
"Redox" = " ";
"Solus" = " ";
"SUSE" = " ";
"Ubuntu" = " ";
"Unknown" = " ";
"Windows" = " ";
};
package = {
symbol = " ";
};
pijul_channel = {
symbol = "🪺 ";
};
python = {
symbol = " ";
};
rlang = {
symbol = " ";
};
ruby = {
symbol = " ";
};
rust = {
symbol = " ";
};
scala = {
symbol = " ";
};
spack = {
symbol = "🅢 ";
};
};
};
}

View file

@ -0,0 +1,12 @@
{
config,
lib,
pkgs,
...
}: {
programs.zellij = {
enable = true;
};
home.file.".config/zellij/config.kdl".source = ../../../../zellij/config.kdl;
}