nixos/home/modules/neovim.nix

66 lines
1.6 KiB
Nix
Raw Normal View History

2024-05-30 03:31:14 +00:00
{ pkgs, lib, config, ... }:
2024-05-30 06:34:10 +00:00
2024-05-30 03:31:14 +00:00
let
cfg = config.snowhawk.neovim;
in
{
options.snowhawk.neovim = {
enable = lib.mkEnableOption "neovim";
2024-05-30 06:34:10 +00:00
2024-05-30 03:31:14 +00:00
package = lib.mkPackageOption pkgs "neovim" {
default = [ "neovim-unwrapped" ];
};
2024-05-30 03:46:02 +00:00
# This should be close to identical to above
#
2024-05-30 03:31:14 +00:00
# package = lib.mkOption {
# type = lib.types.package;
# default = pkgs.neovim-unwrapped;
# defaultText = lib.literalExpression "pkgs.neovim-unwrapped";
# description = "The package to use for the neovim binary.";
# };
};
config = lib.mkIf cfg.enable {
programs.neovim =
let
nvim-treesitter = pkgs.vimPlugins.nvim-treesitter;
2024-05-30 05:56:58 +00:00
treesitterWithGrammars = nvim-treesitter.withPlugins (_: nvim-treesitter.allGrammars);
2024-05-30 03:31:14 +00:00
treesitter-parsers = pkgs.symlinkJoin {
name = "treesitter-parsers";
paths = treesitterWithGrammars.dependencies;
};
in
{
enable = true;
coc.enable = false;
package = cfg.package;
2024-05-30 06:34:10 +00:00
withNodeJs = true;
withPython3 = true;
withRuby = true;
# TODO: nvim config nix import
2024-05-30 03:31:14 +00:00
extraLuaConfig = ''
-- bootstrap lazy.nvim, LazyVim and your plugins
require("config.lazy")
vim.g.editorconfig = true
vim.opt.runtimepath:append ("${treesitter-parsers}")
'';
2024-05-30 06:34:10 +00:00
2024-05-30 03:31:14 +00:00
plugins = [
treesitterWithGrammars
];
2024-05-30 06:34:10 +00:00
2024-05-30 03:31:14 +00:00
extraPackages = with pkgs; [
nil
nixpkgs-fmt
rustup
lua-language-server
2024-05-30 06:46:12 +00:00
fzf
2024-05-30 03:31:14 +00:00
];
};
};
}