Add bat theme, kitty as rofi term, missing nvim packages
This commit is contained in:
parent
4a98553740
commit
5bda8341ea
1
nixos/home-manager/env/rofi.nix
vendored
1
nixos/home-manager/env/rofi.nix
vendored
|
@ -4,5 +4,6 @@
|
|||
enable = true;
|
||||
location = "right";
|
||||
pass.enable = true;
|
||||
terminal = "kitty";
|
||||
};
|
||||
}
|
||||
|
|
|
@ -6,10 +6,24 @@
|
|||
./lazygit.nix
|
||||
];
|
||||
programs.neovim.defaultEditor = true;
|
||||
programs.bat = {
|
||||
enable = true;
|
||||
config = {
|
||||
theme = "Catppuccin-macchiato";
|
||||
};
|
||||
themes = {
|
||||
Catppuccin-macchiato = builtins.readFile (pkgs.fetchFromGitHub
|
||||
{
|
||||
owner = "catppuccin";
|
||||
repo = "bat";
|
||||
rev = "ba4d16880d63e656acced2b7d4e034e4a93f74b1";
|
||||
sha256 = "6WVKQErGdaqb++oaXnY3i6/GuH2FhTgK0v4TN4Y0Wbw=";
|
||||
} + "/Catppuccin-macchiato.tmTheme");
|
||||
};
|
||||
};
|
||||
home.packages = with pkgs; [
|
||||
(nerdfonts.override { fonts = [ "FiraCode" ]; })
|
||||
file
|
||||
silver-searcher
|
||||
bat
|
||||
];
|
||||
}
|
||||
|
|
|
@ -16,22 +16,27 @@
|
|||
gcc
|
||||
fzf
|
||||
ripgrep
|
||||
# LSP config
|
||||
|
||||
# Python
|
||||
mypy
|
||||
black
|
||||
isort
|
||||
ruff
|
||||
python3Packages.jedi-language-server
|
||||
|
||||
# Nix
|
||||
rnix-lsp
|
||||
nil
|
||||
|
||||
# Lua
|
||||
sumneko-lua-language-server
|
||||
stylua
|
||||
|
||||
# Fortran
|
||||
fortran-language-server
|
||||
];
|
||||
extraPython3Packages = ps: with ps; [
|
||||
jedi
|
||||
|
||||
# Misc
|
||||
nodePackages.prettier
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue