Files
home-manager/terminal-environment/editor.nix
2026-05-07 23:35:43 +02:00

28 lines
408 B
Nix

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