2022-12-30 08:45:15 +00:00
|
|
|
# TODO: vim-plug and Mason supports laziness. Probably worth it to explore
|
|
|
|
# incremental dependencies based on the project
|
2023-01-19 22:02:39 +00:00
|
|
|
# TODO: just install these things, then symlink to mason's bin directory
|
2022-12-30 08:45:15 +00:00
|
|
|
#
|
|
|
|
# One thing to consider, though, /nix/store of `nix-shell` or `nix-develop`
|
|
|
|
# might be different from `home-manager`'s
|
|
|
|
{ pkgs, lib, config, proj_root, ... }:
|
2022-12-28 02:53:38 +00:00
|
|
|
let
|
|
|
|
# NOTE: Failure 1: buildInputs is pretty much ignored
|
|
|
|
# my_neovim = pkgs.neovim-unwrapped.overrideDerivation (old: {
|
|
|
|
# # TODO: is there a more beautiful way to override propagatedBuildInputs?
|
|
|
|
# name = "hungtr-" + old.name;
|
|
|
|
# buildInputs = (old.buildInputs or []) ++ [
|
|
|
|
# pkgs.tree-sitter # highlighting
|
|
|
|
# rust_pkgs # for potentially rust-analyzer
|
|
|
|
# pkgs.fzf
|
|
|
|
# pkgs.ripgrep
|
|
|
|
# pkgs.zk
|
|
|
|
# pkgs.fd
|
|
|
|
# ];
|
|
|
|
# NOTE: Failure 2: propagatedBuildInputs probably only concerns dyn libs
|
|
|
|
# });
|
|
|
|
# NOTE: Failure 3: must be unwrapped neovim because home-manager does the wrapping
|
|
|
|
# my_neovim = pkgs.neovim;
|
|
|
|
|
|
|
|
# NOTE: Add packages to nvim_pkgs instead, so that it's available at userspace
|
|
|
|
# and is added to the path after wrapping.
|
|
|
|
# check: nix repl `homeConfigurations.hungtr.config.programs.neovim.finalPackage.buildCommand`
|
|
|
|
# see: :/--suffix.*PATH
|
|
|
|
# there should be mentions of additional packages
|
|
|
|
my_neovim = pkgs.neovim-unwrapped;
|
|
|
|
rust_pkgs = (pkgs.rust-bin.selectLatestNightlyWith
|
|
|
|
(
|
|
|
|
toolchain:
|
|
|
|
toolchain.default.override {
|
|
|
|
extensions = [ "rust-src" ];
|
|
|
|
}
|
|
|
|
));
|
|
|
|
nvim_pkgs = [
|
|
|
|
# pkgs.gccStdenv
|
|
|
|
pkgs.gcc
|
|
|
|
pkgs.tree-sitter
|
|
|
|
pkgs.fzf # file name fuzzy search
|
|
|
|
pkgs.ripgrep # content fuzzy search
|
|
|
|
pkgs.zk # Zettelkasten (limited support)
|
|
|
|
pkgs.fd # Required by a Telescope plugin (?)
|
|
|
|
pkgs.stdenv.cc.cc.lib
|
2023-01-19 22:02:39 +00:00
|
|
|
pkgs.rnix-lsp # doesn't work, Mason just installs it using cargo
|
2023-01-19 21:37:58 +00:00
|
|
|
pkgs.rust4cargo
|
|
|
|
|
2022-12-28 02:53:38 +00:00
|
|
|
|
|
|
|
# Language-specific stuffs
|
|
|
|
pkgs.sumneko-lua-language-server
|
2023-01-19 21:30:25 +00:00
|
|
|
# pkgs.python3Packages.python-lsp-server
|
|
|
|
pkgs.nodePackages.pyright
|
|
|
|
pkgs.python3Packages.pylint
|
|
|
|
pkgs.python3Packages.flake8
|
2023-01-03 22:34:51 +00:00
|
|
|
# TODO: the devShell should provide rust-analyzer so that
|
|
|
|
# cargo test builds binaries compatible with rust-analyzer
|
|
|
|
|
|
|
|
# pkgs.rust-analyzer
|
|
|
|
# rust_pkgs
|
|
|
|
# pkgs.evcxr # Rust REPL for Conjure!
|
2022-12-28 02:53:38 +00:00
|
|
|
];
|
|
|
|
in
|
|
|
|
{
|
|
|
|
options.base.neovim = {
|
|
|
|
enable = lib.mkOption {
|
|
|
|
default = true;
|
|
|
|
description = "enable personalized neovim as default editor";
|
|
|
|
type = lib.types.bool;
|
|
|
|
example = false;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
config = lib.mkIf config.base.neovim.enable {
|
|
|
|
programs.neovim = {
|
|
|
|
enable = true;
|
|
|
|
package = my_neovim;
|
|
|
|
viAlias = true;
|
|
|
|
vimAlias = true;
|
|
|
|
withPython3 = true;
|
|
|
|
withNodeJs = true;
|
2022-12-31 08:40:26 +00:00
|
|
|
# Attempt 4: Correct way to make neovim aware of packages
|
|
|
|
# homeConfigurations.config.programs.neovim takes UNWRAPPED neovim
|
|
|
|
# and wraps it.
|
|
|
|
# Ideally, we build our own neovim and add that to config.home.packages
|
|
|
|
# to share it with nixOS. But we don't really need to share
|
2022-12-28 02:53:38 +00:00
|
|
|
extraPackages = nvim_pkgs;
|
|
|
|
# only for here for archive-documentation
|
|
|
|
# extraPython3Packages = (pypkgs: [
|
|
|
|
# # pypkgs.python-lsp-server
|
|
|
|
# pypkgs.ujson
|
|
|
|
# ]);
|
|
|
|
# I use vim-plug, so I probably don't require packaging
|
|
|
|
# extraConfig actually writes to init-home-manager.vim (not lua)
|
|
|
|
# https://github.com/nix-community/home-manager/pull/3287
|
|
|
|
# extraConfig = builtins.readFile "${proj_root}/neovim/init.lua";
|
|
|
|
};
|
2022-12-30 08:45:15 +00:00
|
|
|
# home.packages = nvim_pkgs;
|
|
|
|
xdg.configFile."nvim/init.lua".source = "${proj_root.config.path}//neovim/init.lua";
|
2022-12-28 02:53:38 +00:00
|
|
|
};
|
|
|
|
}
|