141 lines
3.2 KiB
Nix
141 lines
3.2 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
programs.neovim = {
|
|
enable = true;
|
|
viAlias = true;
|
|
vimAlias = true;
|
|
extraPackages = with pkgs; [
|
|
# LazyVim
|
|
lua-language-server
|
|
stylua
|
|
# Telescope
|
|
ripgrep
|
|
];
|
|
|
|
plugins = with pkgs.vimPlugins; [
|
|
lazy-nvim
|
|
];
|
|
|
|
extraLuaConfig = let
|
|
plugins = with pkgs.vimPlugins; [
|
|
# LazyVim
|
|
LazyVim
|
|
bufferline-nvim
|
|
cmp-buffer
|
|
cmp-nvim-lsp
|
|
cmp-path
|
|
cmp_luasnip
|
|
conform-nvim
|
|
dashboard-nvim
|
|
dressing-nvim
|
|
flash-nvim
|
|
friendly-snippets
|
|
gitsigns-nvim
|
|
indent-blankline-nvim
|
|
lualine-nvim
|
|
neo-tree-nvim
|
|
neoconf-nvim
|
|
neodev-nvim
|
|
noice-nvim
|
|
nui-nvim
|
|
nvim-cmp
|
|
nvim-lint
|
|
nvim-lspconfig
|
|
nvim-notify
|
|
nvim-spectre
|
|
nvim-ts-autotag
|
|
nvim-ts-context-commentstring
|
|
nvim-web-devicons
|
|
persistence-nvim
|
|
plenary-nvim
|
|
telescope-fzf-native-nvim
|
|
telescope-nvim
|
|
todo-comments-nvim
|
|
tokyonight-nvim
|
|
trouble-nvim
|
|
vim-illuminate
|
|
vim-startuptime
|
|
{
|
|
name = "LuaSnip";
|
|
path = luasnip;
|
|
}
|
|
{
|
|
name = "catppuccin";
|
|
path = catppuccin-nvim;
|
|
}
|
|
{
|
|
name = "mini.ai";
|
|
path = mini-nvim;
|
|
}
|
|
{
|
|
name = "mini.bufremove";
|
|
path = mini-nvim;
|
|
}
|
|
{
|
|
name = "mini.comment";
|
|
path = mini-nvim;
|
|
}
|
|
{
|
|
name = "mini.indentscope";
|
|
path = mini-nvim;
|
|
}
|
|
{
|
|
name = "mini.pairs";
|
|
path = mini-nvim;
|
|
}
|
|
{
|
|
name = "mini.surround";
|
|
path = mini-nvim;
|
|
}
|
|
];
|
|
mkEntryFromDrv = drv:
|
|
if lib.isDerivation drv
|
|
then {
|
|
name = "${lib.getName drv}";
|
|
path = drv;
|
|
}
|
|
else drv;
|
|
lazyPath = pkgs.linkFarm "lazy-plugins" (builtins.map mkEntryFromDrv plugins);
|
|
in ''
|
|
require("lazy").setup({
|
|
defaults = {
|
|
lazy = true,
|
|
},
|
|
dev = {
|
|
-- reuse files from pkgs.vimPlugins.*
|
|
path = "${lazyPath}",
|
|
patterns = { "." },
|
|
-- fallback to download
|
|
fallback = true,
|
|
},
|
|
spec = {
|
|
{ "LazyVim/LazyVim", import = "lazyvim.plugins" },
|
|
-- The following configs are needed for fixing lazyvim on nix
|
|
-- force enable telescope-fzf-native.nvim
|
|
{ "nvim-telescope/telescope-fzf-native.nvim", enabled = true },
|
|
-- disable mason.nvim, use programs.neovim.extraPackages
|
|
{ "williamboman/mason-lspconfig.nvim", enabled = false },
|
|
{ "williamboman/mason.nvim", enabled = false },
|
|
},
|
|
})
|
|
'';
|
|
};
|
|
|
|
# https://github.com/nvim-treesitter/nvim-treesitter#i-get-query-error-invalid-node-type-at-position
|
|
xdg.configFile."nvim/parser".source = let
|
|
parsers = pkgs.symlinkJoin {
|
|
name = "treesitter-parsers";
|
|
paths =
|
|
(pkgs.vimPlugins.nvim-treesitter.withPlugins (plugins:
|
|
with plugins; [
|
|
c
|
|
lua
|
|
]))
|
|
.dependencies;
|
|
};
|
|
in "${parsers}/parser";
|
|
}
|