updated some configs and theming

This commit is contained in:
Tyler Mayoff 2025-07-18 23:06:28 -04:00
parent bd56720268
commit 8a2031c511
9 changed files with 80 additions and 181 deletions

View file

@ -6,7 +6,7 @@
imports = [
./shell.nix
./fish.nix
./nushell.nix
./helix.nix
];
home.packages = with pkgs; [
@ -39,57 +39,6 @@
alejandra # nix formatting
];
programs.helix = {
enable = true;
package = pkgs.unstable.helix;
settings = {
theme = "catppuccin_macchiato";
editor = {
auto-format = false;
end-of-line-diagnostics = "warning";
bufferline = "multiple";
line-number = "relative";
inline-diagnostics = {
cursor-line = "error";
};
statusline = {
left = ["mode" "spinner" "spacer" "version-control" "file-name"];
};
file-picker = {
git-ignore = true;
};
lsp = {
display-inlay-hints = true;
display-messages = true;
};
cursor-shape.insert = "bar";
soft-wrap.enable = true;
};
keys = {
normal = {
C-right = "move_next_word_start";
C-left = "move_prev_word_end";
"=" = ":format";
space = {
F = "file_picker_in_current_buffer_directory";
};
};
insert = {
C-right = "move_next_word_start";
C-left = "move_prev_word_end";
};
};
};
};
programs.bat = {
enable = true;
};
@ -129,6 +78,7 @@
programs.zoxide = {
enable = true;
enableFishIntegration = true;
};
# home.stateVersion = "23.11";

View file

@ -14,8 +14,6 @@ in {
set -gx DEBEMAIL "tyler@tylermayoff.com"
fish_add_path $HOME/.local/bin
# fish_add_path /opt/homebrew/bin
# fish_add_path /opt/homebrew/opt/llvm@18/bin
if test -e $HOME/.config/fish/variables-$(hostname).fish
source $HOME/.config/fish/variables-$(hostname).fish
@ -23,8 +21,6 @@ in {
bind \cz 'fg 2>/dev/null; commandline -f repaint'
export GPG_TTY=$(tty)
zoxide init fish | source
'';
shellInit = ''

View file

@ -0,0 +1,9 @@
{...}: {
programs.ghostty = {
enable = true;
settings = {
theme = "dark:catppuccin-macchiato,light:catppuccin-latte";
};
};
}

View file

@ -1,6 +1,6 @@
{pkgs, ...}: {
imports = [
./kitty.nix
./ghostty.nix
];
home.packages = with pkgs; [

View file

@ -73,7 +73,7 @@
pane name="sidebar" {
command "env"
args "YAZI_CONFIG_HOME=~/.config/helide" "yazi"
size "20%"
size "15%"
}
pane command="hx"
}

View file

@ -0,0 +1,52 @@
{pkgs, ...}: {
programs.helix = {
enable = true;
package = pkgs.unstable.helix;
settings = {
theme = "base16_default";
editor = {
auto-format = false;
end-of-line-diagnostics = "warning";
bufferline = "multiple";
line-number = "relative";
inline-diagnostics = {
cursor-line = "error";
};
statusline = {
left = ["mode" "spinner" "spacer" "version-control" "file-name"];
};
file-picker = {
git-ignore = true;
};
lsp = {
display-inlay-hints = true;
display-messages = true;
};
cursor-shape.insert = "bar";
soft-wrap.enable = true;
};
keys = {
normal = {
C-right = "move_next_word_start";
C-left = "move_prev_word_end";
"=" = ":format";
space = {
F = "file_picker_in_current_buffer_directory";
};
};
insert = {
C-right = "move_next_word_start";
C-left = "move_prev_word_end";
};
};
};
};
}

View file

@ -1,11 +1,4 @@
{
# inputs,
# outputs,
# lib,
config,
# pkgs,
...
}: {
{config, ...}: {
systemd.user.services = {
daily_backup = {
Unit = {