mirror of
https://codeberg.org/tmayoff/.dotfiles.git
synced 2025-12-06 08:48:34 -05:00
updated some configs and theming
This commit is contained in:
parent
bd56720268
commit
8a2031c511
9 changed files with 80 additions and 181 deletions
|
|
@ -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";
|
||||
|
|
|
|||
|
|
@ -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 = ''
|
||||
|
|
|
|||
9
dot_config/flake/home/ghostty.nix
Normal file
9
dot_config/flake/home/ghostty.nix
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
{...}: {
|
||||
programs.ghostty = {
|
||||
enable = true;
|
||||
|
||||
settings = {
|
||||
theme = "dark:catppuccin-macchiato,light:catppuccin-latte";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
{pkgs, ...}: {
|
||||
imports = [
|
||||
./kitty.nix
|
||||
./ghostty.nix
|
||||
];
|
||||
|
||||
home.packages = with pkgs; [
|
||||
|
|
|
|||
|
|
@ -73,7 +73,7 @@
|
|||
pane name="sidebar" {
|
||||
command "env"
|
||||
args "YAZI_CONFIG_HOME=~/.config/helide" "yazi"
|
||||
size "20%"
|
||||
size "15%"
|
||||
}
|
||||
pane command="hx"
|
||||
}
|
||||
|
|
|
|||
52
dot_config/flake/home/helix.nix
Normal file
52
dot_config/flake/home/helix.nix
Normal 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";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
@ -1,11 +1,4 @@
|
|||
{
|
||||
# inputs,
|
||||
# outputs,
|
||||
# lib,
|
||||
config,
|
||||
# pkgs,
|
||||
...
|
||||
}: {
|
||||
{config, ...}: {
|
||||
systemd.user.services = {
|
||||
daily_backup = {
|
||||
Unit = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue