working almost

This commit is contained in:
Tyler Mac
2026-08-20 08:47:54 -04:00
parent 86120dcd8d
commit 924cdb2e08
8 changed files with 249 additions and 364 deletions
+31
View File
@@ -0,0 +1,31 @@
# Alacritty configuration - simple but functional
font:
normal:
family: JetBrainsMono Nerd Font
size: 12.0
colors:
primary:
background: "0x1e1e2e"
foreground: "0xf8f8f2"
cursor:
text: "0x1e1e2e"
cursor: "0xf8f8f2"
normal:
black: "0x1e1e2e"
red: "0xf84a50"
green: "0x7ab872"
yellow: "0xf59850"
blue: "0x5192db"
magenta: "0xb775d9"
cyan: "0x54cecd"
white: "0xf8f8f2"
bright:
black: "0x1e1e2e"
red: "0xf84a50"
green: "0x7ab872"
yellow: "0xf59850"
blue: "0x5192db"
magenta: "0xb775d9"
cyan: "0x54cecd"
white: "0xf8f8f2"
+4
View File
@@ -0,0 +1,4 @@
[core]
editor = hx
[push]
default = current
+8
View File
@@ -0,0 +1,8 @@
# Starship configuration - modern prompt
add_newline = false
command_timeout = 1000
format = "$all"
right_format = "$time"
[time]
format = "%T"
disabled = false
+5
View File
@@ -0,0 +1,5 @@
# Tmux configuration - base settings
set -g clock24 on
set -g history-limit 10000
set -g mouse on
set -g default-shell /run/current-system/sw/bin/zsh
+13
View File
@@ -0,0 +1,13 @@
# ZSH configuration that works with Nix
# This file should be sourced from your shell config
# Aliases
alias g="git"
alias docker="docker"
alias h="htop"
# Path setup for Nix packages
export PATH="/nix/var/nix/profiles/default/bin:$PATH"
# Enable syntax highlighting
ZSH_HIGHLIGHT_HIGHLIGHTERS=(main brackets)