Files
home-manager/terminal-environment/editor.nix
Nina Chlóe Kassandra Reiß 8df205457a Establish baseline
2026-04-20 04:21:11 +02:00

26 lines
405 B
Nix

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