11 lines
361 B
Nix
11 lines
361 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
|
|
nixpkgs-fmt # Nix formatter
|
|
(nerdfonts.override { fonts = [ "JetBrainsMono" ]; }) # nerdfonts jetbrains mono
|
|
efm-langserver # Generic language server
|
|
]
|