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; }