java is gay

This commit is contained in:
♥ Minnie ♥ 2025-06-19 09:52:21 +08:00
parent 1782deb3c9
commit da20c3ec82
Signed by: jasmine
GPG key ID: 8563E358D4E8040E
4 changed files with 34 additions and 17 deletions

View file

@ -0,0 +1,30 @@
{
inputs,
pkgs,
...
}: {
home.packages = with pkgs;
[
# Toolchains
gcc
python313
# Typesetting
pandoc
texliveFull
]
++ [
# Our personal neovim configuration.
inputs.nixvim.packages.${pkgs.system}.default
]
# Install jetbrains IDEs with plugins
++ (with inputs.nix-jetbrains-plugins.lib."${system}"; [
(buildIdeWithPlugins pkgs.jetbrains "idea-community" [
"IdeaVIM"
"gruvbox-material-dark"
])
]); # https://github.com/theCapypara/nix-jetbrains-plugins
# Copy our vim configuration file for jetbrains IDEs
home.file.".ideavimrc".source = ./ideavimrc;
}

View file

@ -0,0 +1,3 @@
set number
set relativenumber
set clipboard=unnamedplus