Files
nixos/terminal-environment/editor.nix
Nina Chlóe Kassandra Reiß 1130a847a6 Add ctags support for neovim
2026-03-28 07:31:47 +01:00

23 lines
340 B
Nix

{ config, pkgs, ... }:
let
profile = import ../profile.nix;
in
{
environment.systemPackages = with pkgs; [
vim
fzf
ripgrep
ripgrep-all
ctags
];
programs.neovim = {
enable = true;
defaultEditor = true;
withPython3 = true;
withRuby = true;
withNodeJs = true;
};
}