lsp on the workstation

This commit is contained in:
Geir Okkenhaug Jerstad 2024-07-02 15:02:33 +02:00
parent 02bc2398e3
commit 2f4fa4afd6
4 changed files with 89 additions and 3 deletions

21
workstation/aliases.nix Normal file
View file

@ -0,0 +1,21 @@
{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
tldr
eza
bat
ripgrep
];
environment.shellAliases = {
vi = "nvim";
vim = "nvim";
h = "tldr";
# oxidized
ls = "eza -l";
cat = "bat";
grep = "rg";
top = "btm --color gruvbox";
# some tools
};
}