diff --git a/home/base/desktop/neovim/default.nix b/home/base/desktop/neovim/default.nix index f405a57d..8f3207b6 100644 --- a/home/base/desktop/neovim/default.nix +++ b/home/base/desktop/neovim/default.nix @@ -122,6 +122,7 @@ nodePackages.prettier # common code formatter marksman # language server for markdown glow # markdown previewer + fzf #-- Optional Requirements: gdu # disk usage analyzer, required by AstroNvim diff --git a/home/base/server/bat.nix b/home/base/server/bat.nix index 880ec9d8..ea4c2950 100644 --- a/home/base/server/bat.nix +++ b/home/base/server/bat.nix @@ -4,11 +4,14 @@ enable = true; config = { pager = "less -FR"; - theme = "Catppuccin-mocha"; + theme = "catppuccin-mocha"; }; themes = { # https://raw.githubusercontent.com/catppuccin/bat/main/Catppuccin-mocha.tmTheme - Catppuccin-mocha = builtins.readFile "${catppuccin-bat}/Catppuccin-mocha.tmTheme"; + catppuccin-mocha = { + src = catppuccin-bat; + file = "Catppuccin-mocha.tmTheme"; + }; }; }; } diff --git a/home/base/server/git.nix b/home/base/server/git.nix index 18bac654..d5e8ac68 100644 --- a/home/base/server/git.nix +++ b/home/base/server/git.nix @@ -43,15 +43,15 @@ # replace https with ssh url = { - "ssh://git@github.com/" = { - insteadOf = "https://github.com/"; - }; - "ssh://git@gitlab.com/" = { - insteadOf = "https://gitlab.com/"; - }; - "ssh://git@bitbucket.com/" = { - insteadOf = "https://bitbucket.com/"; + "ssh://git@github.com/ryan4yin" = { + insteadOf = "https://github.com/ryan4yin"; }; + # "ssh://git@gitlab.com/" = { + # insteadOf = "https://gitlab.com/"; + # }; + # "ssh://git@bitbucket.com/" = { + # insteadOf = "https://bitbucket.com/"; + # }; }; };