From 108bc9517b04869355dbfba26ab050f032d44d11 Mon Sep 17 00:00:00 2001 From: Fish <77413091+JulianBarbera@users.noreply.github.com> Date: Sat, 23 Aug 2025 20:17:47 -0700 Subject: [PATCH] update fish config --- users/fish/cattop/configuration.nix | 12 ++++++++++-- users/fish/vim.nix | 1 + 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/users/fish/cattop/configuration.nix b/users/fish/cattop/configuration.nix index 66a59ef..fa420bb 100644 --- a/users/fish/cattop/configuration.nix +++ b/users/fish/cattop/configuration.nix @@ -93,9 +93,17 @@ fish ]; }; - + programs.git = { + enable = true; + extraConfig = { + push = { + autoSetupRemote = true; + }; + }; + }; programs.firefox.enable = true; - programs.neovim.defaultEditor.enable = true; + programs.neovim.enable = true; + #programs.neovim.defaultEditor.enable = true; # List packages installed in system profile. # You can use https://search.nixos.org/ to find more packages (and options). diff --git a/users/fish/vim.nix b/users/fish/vim.nix index 52c14b8..80d61f4 100644 --- a/users/fish/vim.nix +++ b/users/fish/vim.nix @@ -1,3 +1,4 @@ { ... }: { + vim.languages.svelte.enable = true; }