mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
20 lines
322 B
Nix
20 lines
322 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
programs.neovim = {
|
|
extraConfig = ''
|
|
luafile ${./init.lua}
|
|
'';
|
|
extraPackages = with pkgs; [
|
|
terraform-ls
|
|
];
|
|
plugins = with pkgs.vimPlugins; [
|
|
neorg
|
|
nvim-cmp
|
|
plenary-nvim
|
|
nvim-base16
|
|
telescope-nvim
|
|
nvim-lspconfig
|
|
];
|
|
};
|
|
}
|