9 lines
288 B
Nix
9 lines
288 B
Nix
pkgs: with pkgs; [
|
|
neovim # neovim nightly
|
|
ripgrep # "rg" cli, alternative to grep, used by nvim
|
|
fd # find alternative, used by nvim
|
|
lsd # "ls" alternative
|
|
zoxide # "z" command
|
|
nil # Nix LSP
|
|
(nerdfonts.override { fonts = [ "JetBrainsMono" ]; }) # nerdfonts jetbrains mono
|
|
]
|